Advertisement
Guest User

Untitled

a guest
Nov 5th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.78 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="en">
  3. <head>
  4. <meta charset=utf-8>
  5.     <title>Sample HTML5 Structure</title>
  6. </head>
  7. <body>
  8. <div id="container">
  9.     <header>
  10.      <h1>Sample HTML5 Structure</h1>
  11.         <nav>
  12.             <ul>
  13.                 <li><a href="#">Home</a></li>
  14.                 <li><a href="#">About</a></li>
  15.             </ul>
  16.         </nav>
  17.     </header>
  18.     <section>
  19.      <hgroup>
  20.          <h1>Main Section</h1>
  21.             <h2>This is a sample HTML5 Page</h2>
  22.         </hgroup>
  23.      <article>
  24.          <p>This is the content for the first article</p>
  25.         </article>
  26.         <article>
  27.          <p>This is the content for the second article</p>
  28.         </article>
  29.     </section>
  30.     <footer>
  31.      <p>This is the Footer</p>
  32.     </footer>
  33. </div>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement