A Simple walk through a basic HTML site
<!DOCTYPE html>
<html>
<head> .. Head Goes Here ... </head>
<body>
<header id='site-header'>
<h1 class='logo'>My Awesome Website</h1>
<nav id='main-nav'>
<ul>
<li><a href='item1.html'>Item 1</a></li>
<li><a href='item2.html'>Item 2</a></li>
</ul>
</nav>
</header>
<div id='site-wrapper'>
<section id='site-content'>
<article>
<h1>Header</h1>
<p>Lorem Ipsum</p>
</article>
</section>
</div>
<footer id='site-footer'> ... Footer Content ... </footer>
</body>
</html>