<!doctype html>
<html>

<head>
 <meta charset="utf-8" />
 <title>Your Website</title>
 <link href="main.css" rel="stylesheet" type="text/css"></link>
<script src="script.js"></script>
</head>
<body>
 <header>
  <nav>
   <ul>
    <li>Home</li>
    <li>About</li>
   </ul>
  </nav>
 </header>
 
 <section>
  <article>
   <header>
    <h2>Article title</h2>
Posted on <time datetime="2009-09-04T16:31:24+02:00">September 4th 2009</time> by <a href="#">Writer</a> - <a href="#">6 comments</a>
   </header>
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egest.

  </article>
  
  <article>
   <header>
    <h2>Article title</h2>
Posted on <time datetime="2009-09-04T16:31:24+02:00">September 4th 2009</time> by <a href="#">Writer</a> - <a href="#">6 comments</a>
   </header>
   Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
  </article>
 </section>

 <aside>
  <h2>About section</h2>
Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
 </aside>

 <footer>
  Copyright 2009 Your name
 </footer>
</body>
</html>