HTML5 structure page

HTML 5 introduces a whole set of new elements that make it much easier to structure pages.

<!DOCTYPE html>
<html>
<head>
<title>HTML5</title>
</head>
<body>
<header>
<h1><a href='#'>Company name</a></h1>
</header>
<nav>
<ul>
<li><a href='#'>Home</a></li>
<li><a href='#'>Company</a></li>
<li><a href='#'>About</a></li>
<li><a href='#'>Contact</a></li>
</ul>
</nav>
<section>
<article>
<header>
<h1><a href='#'>Title</a></h1>
</header>
<section>
<p>Lorem ipsum...</p>
</section>
</article>
<article>
<header>
<h1><a href='#'>Title</a></h1>
</header>
<section>
<p>Lorem ipsum...</p>
</section>
</article>
<article>
<header>
<h1><a href='#'>Title</a></h1>
</header>
<section>
<p>Lorem ipsum...</p>
</section>
</article>
</section>
<footer>
<p>Copyright © 2010 All Rights</p>
</footer>
</body>
</html>