document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8" />
  5.     <title>Luke\'s website</title>
  6.     <link rel="stylesheet" href="main.css">
  7.     <!--Setting up the body-->
  8. </head>
  9. <body>
  10.     <div id="big_wrapper">
  11.     <header>
  12.         <h1>Welcome to Lukes HTML5+CSS3 area</h1>
  13.        
  14.     <nav>
  15.         <ul>
  16.             <li>Home</li>
  17.             <li>Tutorials</li>
  18.             <li>Podcast</li>
  19.         </ul>
  20.     </nav>
  21.    
  22.     <section>
  23.         <article>
  24.             <header>
  25.                 <hgroup>
  26.                     <h1>Title of Article 1</h1>
  27.                     <h2>subtitle for Article 1</h2>
  28.                 </hgroup>
  29.             </header>
  30.                 <p>Here be a wee article</p>
  31.             <footer>
  32.                 <p>- Written by Luke Ryberg</p>
  33.             </footer>
  34.         </article>
  35.        
  36.         <article>
  37.             <header>
  38.                 <hgroup>
  39.                     <h1>Title of Article 2</h1>
  40.                     <h2>subtitle for Article 2</h2>
  41.                 </hgroup>
  42.             </header>
  43.                 <p>Here be a wee article</p>
  44.             <footer>
  45.                 <p>- Written by Luke Ryberg</p>
  46.             </footer>
  47.         </article>
  48.     </section>
  49.    
  50.     <aside>
  51.         <h4>News</h4>
  52.         I got a pretty girl!
  53.     </aside>
  54.    
  55.     <footer>
  56.         Copyright Luke Ryberg 2011
  57.     </footer>
  58.     </div>
  59. </body>
  60. </html>
');