<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<!-- Header Section -->
<header>
<h1>Welcome to My Website</h1>
<!-- Navigation Menu -->
<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 Content Section -->
<section>
<h2>About Us</h2>
<p>This is the about section of our website.</p>
</section>
<!-- Footer Section -->
<footer>
<p>© 2024 My Website. All rights reserved.</p>
<!-- Contact Information -->
<address>
Email: info@example.com<br>
Phone: 123-456-7890
</address>
</footer>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.