Tuesday 17 December 2013

HTML5 Page Structure

<!DOCTYPE HTML>

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Your Website</title>
</head>

<body>

<header>
<nav>
<ul>
<li>Your menu</li>
</ul>
</nav>
</header>

<section>

<article>
<header>
<h2>Article title</h2>
<p>Posted on <time datetime="2009-09-04T16:31:24+02:00">September 4th 2009</time> by <a href="#">Author Name</a> - <a href="#comments">6 comments</a></p>
</header>
<p>Your Content Goes Here.</p>
</article>

<article>
<header>
<h2>Article title</h2>
<p>Posted on <time datetime="2009-09-04T16:31:24+02:00">September 4th 2009</time> by <a href="#">Author Name</a> - <a href="#comments">6 comments</a></p>
</header>
<p>Your Content Goes Here.</p>
</article>

</section>

<aside>
<h2>About section</h2>
<p>Aside Content Goes Here.</p>
</aside>

<footer>
<p>Copyright 2013 Your Company Name</p>
</footer>

</body>

</html>


HTML5 Page Structure

No comments:

Post a Comment