Evet bana güzel ve sade geldi kodlarımız:
Kod:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Sayfa Başlığı</title>
</head>
<body>
<header>
<p>header (sayfa başlığı)</p>
</header>
<nav>
<p>nav (menü)</p>
</nav>
<main>
<article>
<header>
<h1>Konu Başlığı</h1>
</header>
<p>Konu giriş yazısı</p>
<section>
<header>
<h2>Konu Alt Başlığı</h2>
</header>
<p>Konu açıklama yazısı</p>
</section>
</article>
<article>
<header>
<h1>Konu Başlığı</h1>
</header>
<p>Konu giriş yazısı</p>
<section>
<header>
<h2>Konu Alt Başlığı</h2>
</header>
<p>Konu açıklama yazısı</p>
</section>
</article>
</main>
<aside>
aside (sağ veya sol kolon)
</aside>
<footer>
footer (sayfa altı)
</footer>
</body>
</html>