Code
html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Semantic Page</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>
</header>
<main>
<article>
<header>
<h1>Article Title</h1>
<time datetime="2024-01-15">January 15, 2024</time>
</header>
<section>
<h2>Section 1</h2>
<p>Content paragraph...</p>
</section>
<section>
<h2>Section 2</h2>
<p>More content...</p>
</section>
<footer>
<p>Author: John</p>
</footer>
</article>
<aside>
<h3>Sidebar</h3>
<p>Related links...</p>
</aside>
</main>
<footer>
<p>© 2024 Demo Site</p>
</footer>
</body>
</html>