Advertisement
Guest User

Untitled

a guest
Jul 27th, 2011
835
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.06 KB | None | 0 0
  1. <!DOCTYPE >
  2. <html>
  3.     <head>
  4.         <title>A Basic HTML5 blog homepage</title>
  5.         <meta charset="UTF-8">
  6.         <!-- CSS and Javascript here -->
  7.     </head>
  8.     <body>
  9.         <header>
  10.             <!-- Website name and navigation -->
  11.             <h1>My Amazing Blog</h1>
  12.         </header>
  13.         <h1>Test - still okay</h1>
  14.         <section>
  15.             <!-- Blog articles - repeat as many times as required -->
  16.             <article>
  17.                 <header>
  18.                     <h1>test-again (now small)</h1>
  19.                     <hgroup>
  20.                         <h1><a href="/blog/first-post-link">Main Heading (2)</a></h1>
  21.                         <h2>Sub-heading (1)</h2>
  22.                     </hgroup>
  23.                     <p>
  24.                         Posted on the
  25.                         <time pubdate datetime="2010-10-30T13:08">
  26.                             30 October 2010 at 1:08 PM
  27.                         </time>
  28.                     </p>
  29.                 </header>
  30.                 <p>
  31.                     Summary of the first blog post.
  32.                 </p>
  33.             </article>
  34.             <!-- Blog sidebar -->
  35.             <aside>
  36.                 <h2>Subscribe to RSS feed</h2>
  37.                 <p>
  38.                     Make sure you don't miss a blog post!
  39.                 </p>
  40.             </aside>
  41.         </section>
  42.         <footer>
  43.             <!-- Copyright and other stuff -->
  44.             <p>
  45.                 My Amazing blog &copy; 2011
  46.             </p>
  47.         </footer>
  48.     </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement