<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample Page</title>
<style>
body { font-family: sans-serif; max-width: 800px; margin: 40px auto; padding: 0 20px; }
header { border-bottom: 1px solid #ddd; padding-bottom: 10px; }
nav a { margin-right: 15px; }
</style>
</head>
<body>
<header>
<h1>Sample Page</h1>
<nav>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
</header>
<main>
<section id="about">
<h2>About</h2>
<p>This is a sample paragraph demonstrating basic text content.</p>
<ul>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<form>
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
<p>© 2026 Sample Footer</p>
</footer>
</body>
</html>