<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Simple test page for spider testing">
<meta name="keywords" content="test, html, spider, crawler">
<title>Simple Test Page</title>
</head>
<body>
<header>
<nav>
<a href="/home">Home</a>
<a href="/about">About</a>
</nav>
</header>
<main>
<h1>Welcome to Test Page</h1>
<p>This is a simple test page used for testing the spider crawler.</p>
<h2>Features</h2>
<ul>
<li>Clean HTML structure</li>
<li>Semantic markup</li>
<li>Test content for extraction</li>
</ul>
<h2>Code Example</h2>
<pre><code class="language-javascript">
console.log('Hello, world!');
function greet(name) {
return `Hello, ${name}!`;
}
</code></pre>
<p>For more information, visit our <a href="/docs">documentation</a>.</p>
</main>
<footer>
<p>© 2024 Test Site</p>
</footer>
</body>
</html>