<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Website</title>
</head>
<body>
<header>
<h1>Welcome to My Test Website</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h2>Home</h2>
<p>This is the home section of the test website.</p>
</section>
<section id="about">
<h2>About</h2>
<p>This section contains information about the website.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>You can contact us at <a href="mailto:test@example.com">test@example.com</a>.</p>
</section>
</main>
<footer>
<p>© 2025 Test Website. All rights reserved.</p>
</footer>
</body>
</html>