Advertisement
turlando

index.html

Jun 10th, 2011
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.72 KB | None | 0 0
  1. <!doctype html>
  2.     <html lang="en">
  3.         <head>
  4.             <meta charset="utf-8" />
  5.             <link rel="stylesheet" type="text/css" href="style.css" />
  6.             <title>title</title>
  7.         </head>
  8.         <body>
  9.             <header>
  10.                 <hgroup>
  11.                     <h1>title</h1>
  12.                     <h2>slogan</h2>
  13.                 </hgroup>
  14.                 <nav>
  15.                     <ul>
  16.                         <li><a href="#">Home</a></li>
  17.                         <li><a href="#">link</a></li>
  18.                         <li><a href="#">link</a></li>
  19.                     </ul>
  20.                 </nav>
  21.             </header>
  22.             <aside>
  23.             <section>
  24.                 <h1>Title</h1>
  25.                     <p>content</p>
  26.             </section>
  27.             </aside>
  28.             <div id="content">
  29.             <section>
  30.                 <h1>title</h1>
  31.                 <p>content</p>
  32.             </section>
  33.             <section>
  34.                 <h1>title</h1>
  35.                 <p>content</p>
  36.             </div>
  37.             <footer>
  38.             </footer>
  39.         </body>
  40.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement