<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Semantic HTML Template</title>
</head>
<body>
<header>
<h1>Page Title</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 Section</h2>
<article>
<h3>Content Article</h3>
<p>Main content paragraph.</p>
</article>
</section>
<section id="about">
<h2>About Section</h2>
<aside>
<p>Sidebar or supplementary information</p>
</aside>
</section>
<section id="contact">
<h2>Contact Section</h2>
<figure>
<img src="placeholder.jpg" alt="Description">
<figcaption>Image caption</figcaption>
</figure>
</section>
</main>
<footer>
<p>© 2025 Your Website</p>
</footer>
</body>
</html>