<!DOCTYPE html><!--The new DOCTYPE declaration, such easier than before-->
<head> <!--Like before, this is where the style declaration goes-->
</head>
<body>
<header> <!--This marks the header of the page and includes the navigation-->
<nav>
</nav>
</header>
<section> <!--This starts the content section -->
<header>
<!--This time the header tag marks the beginning of the content section -->
</header>
<article>
</article>
<footer>
<!--As with the header tag, this time the footer marks the end of the content section -->
</footer>
</section> <!--This ends the content section -->
<aside>
<!--Here comes the sidebar content -->
</aside>
<footer>
<!--The footer, which marks the end of the page, is here -->
</footer>
</body>
</html>