<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
</head>
<body>
<header>
<h1>Welcome to My Web Page</h1>
</header>
<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>
<section id="home">
<h2>Home</h2>
<p>Welcome to my home section.</p>
</section>
<section id="about">
<h2>About</h2>
<p>This is some information about me.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>You can reach me at example@example.com.</p>
</section>
<footer>
<p>© 2023 My Web Page. All rights reserved.</p>
</footer>
</body>
</html>