I have taken the following design from a tutorial done in 2006, and have decided to markup it up in HTML5. The design is as follows:

My markup is as follows:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Enlighten Designs - About</title>
<link rel="stylesheet" href="style.css">
</head>
<body id="about">
<div id="page-wrapper">
<nav id="site-nav" role="navigation">
<h2 class="visually-hidden">Site Navigation</h2>
<ul>
<li id="about-nav"><a href="#">About</a></li>
<li id="services-nav"><a href="#">Services</a></li>
<li id="portfolio-nav"><a href="#">Portfolio</a></li>
<li id="contact-nav"><a href="#">Contact Us</a></li>
</ul>
</nav>
<header id="page-header" role="banner">
<h1>Enlighten Designs</h1>
</header>
<main id="content" class="container" role="main">
<div id="primary">
<section>
<h2>About</h2>
<p><strong>Enlighten Designs</strong> is an internet solutions provider that specialises in front and back end development. To view some of the websites we have created view our <a href="#">portfolio</a>.</p>
<p>We are currently undergoing a "face lift", so if you have any questions or would like more information about the sevices we provide please feel free to contact us.</p>
</section>
<section>
<h2>Contact Us</h2>
<address>
Phone: <span>(07) 853 6060</span><br>
Fax: <span>(07) 853 6060</span><br>
Email: <a href="mailto:[email protected]"><span>[email protected]</span></a><br>
P.O. Box: <span>14159, Hamilton, New Zealand</span>
</address>
<p><a href="#">More contact information</a>...</p>
</section>
</div><!-- end primary -->
<aside id="secondary" role="complementary">
<h2>Featured Projects</h2>
<h3>The New Zealand National Party</h3>
<p>We recently launched the <a href="#" rel="external">New Zealand National Party</a> website - Lorem ipsem dolor sit amet. Pita ala pesama borak na falanuisen</p>
<h3>Greensets</h3>
<p>We recently launched the <a href="#" rel="external">Greensets</a> website - Lorem ipsem dolor sit amet. Pita ala pesama borak na falanuisen</p>
<h3>Nutrition Care</h3>
<p>We recently launched the <a href="#" rel="external">Nutrition Care</a> website - Lorem ipsem dolor sit amet. Pita ala pesama borak na falanuisen</p>
</aside>
</main>
<footer id="page-footer" role="contentinfo">
<div class="fl">
<p>Copyright © Enlighten Designs</p>
<p>Powered by Enlighten Hosting and Vadmin 3.0 CMS</p>
</div>
<ul class="fr">
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Terms of Trade</a></li>
</ul>
</footer>
</div>
</body>
</html>