Advertisement
PoweredByLinux

My second lesson in HTML5

Jul 25th, 2012
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>YAY IT WORKS</title>
  5. <meta charset="UTF-8" />
  6. </head>
  7.  
  8. <body>
  9.  <h1>Header 1</h1>
  10.  <h2>Header 2 (A small sub section)</h2>
  11.  <p>The quick brown fox jumped over the lazy dog.</p>
  12.  <p>My computer is <b>REALLY</b> blue at night.</p>
  13.  
  14.       <p>This is my grocery list (it really isn't, these are weird groceries to buy)</p>
  15.       <ul>
  16.        <li>Asparigus</li>
  17.        <li>Milk</li>
  18.        <li>Tempeh</li>
  19.       </ul>
  20.  
  21.       <p>This is what I did this morning</p>
  22.       <ol>
  23.        <li>Climb out of bed</li>
  24.        <li>Locate pants and put them on</li>
  25.        <li>Turn on computer</li>
  26.        <li>Go shower and brush teeth</li>
  27.        <li>Put on different pants and log on P2PU</li>
  28.       </ol>
  29.  
  30. <tag attribute="value">
  31. <a href="http://dailytekk.com/2012/01/29/6-easy-ways-to-learn-coding-and-computer-science-for-free/">This is what brought me here! Love you P2PU!</a>
  32.  
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement