Advertisement
rayansud

My HTML

Aug 20th, 2011
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.32 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  2. "http://www.w3.org/TR/html4/strict.dtd">
  3.  
  4. <html>
  5.  
  6.   <head>
  7.  
  8.     <h1><strong>A short history of Mark-up and the WWW: Part 1</strong></h1>
  9.  
  10.   </head>
  11.  
  12.   <body>
  13.  
  14.    <h2> A short history of Mark-up and the WWW </h2>
  15.  
  16.  
  17.   <p>  In the beginning...
  18.  
  19.     The Internet and email have both been around for some time now.
  20.     The initial Internet was actually developed by the US military
  21.     as a means of communication that was impossible to break! It was
  22.     thought that if there were thousands of communication points
  23.     (rather than just a few transmitters) then it would be possible
  24.     to transmit a message even when many communication points had
  25.     been destroyed. No-one imagined that the Internet would become
  26.     a house-hold tool for many people throughout the world! <p>
  27.  
  28.  
  29.    <h3> The World-Wide-Web </h3>
  30.  
  31.    <p> Until 1989, the Internet was primarily used by <em>computer geeks</em>
  32.     who knew all the required tools and commands. But everything
  33.     changed when Tim Berners-Lee of the <strong>CERN</strong> nuclear research facility
  34.     near Geneva, Switzerland, introduced Hypertext documents. </p>
  35.  
  36.     <p><em>Hypertext documents</em> made it very simple to follow links to related
  37.     information, regardless of which country the information is stored
  38.     in - <em>all that was required was a single click of the mouse!</em> Yet
  39.     these links also had an implication for the way people would read
  40.     the information...</p>
  41.  
  42. </body>
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49. <h1>Shopping List</h1>
  50.  
  51. <ul>
  52. <li>Tomatoes</li>
  53. <li>Butter</li>
  54. <li>Flour</li>
  55. <li>Pizza Toppings</li>
  56. </ul>
  57.  
  58. <h1>Steps to Checkout</h1>
  59. <ol>
  60. <li>Count your items(to see if it is 15 or less)</li>
  61. <li>Leave your items in the basket and let the cashier unlod it</li>
  62. <li>Check in to foursquare or Gowalla</li>
  63. <li>Proudly decline a plastic bag, doing your part for the environment</li>
  64. <li>Use your fancy NFC-enabled Nexus S to pay</li>
  65. <li>Fiddle with your phone as something inevitably goes wrong</li>
  66. <li>Fix it and walk out with you items, embarrassed</li>
  67. </ol>
  68.  
  69. <p>Too lazy to get up and go to the store? Click <a href="http://www.amazon.com">here!</a></p>
  70. <p>Side note: Don't have a Nexus S? Click <a href="http://www.amazon.com/Samsung-Nexus-Unlocked-Phone-U-S-Warranty/dp/B004USPRM4">here!</a>
  71.  
  72.  
  73. <h1>Why Pizza Is Awesome</h1>
  74.  
  75. <img src="http://winnersdelhinews.com/wp-content/uploads/2011/07/cheese-pizza.jpg" alt="Pizza"/>
  76. <p>That pic tells you all you need to know - It just <em>is</em>!</p>
  77.  
  78. <a href="http://http://www.youtube.com/watch?v=66DmvnhQ0KY/">Hilarious PIZZA SONG!!!!!! (Brand New)</a>
  79. <p>by <a href="http://www.youtube.com/user/ArtbyRiley">ArtbyRiley</a></p>
  80. <p>Uploaded on July 19, 2011</p>
  81.  
  82. <audio controls="controls">
  83.   <source src="http://dc378.4shared.com/download/zZTSQIJF/Hilarious_PIZZA_SONG__Brand_Ne.ogg?tsid=20110820-172152-54c9fcde" type="audio/ogg" />
  84. <audio autoplay="autoplay" />
  85. <audio loop="loop" />
  86. </audio>
  87.  
  88.  
  89. <table>
  90.       <caption>A table of Apple iOS devices</caption>
  91.          <tr>
  92.       <th>Name</th>
  93.        <th>Year released</th>
  94.       <tr>
  95.         <td>iPod</td>
  96.         <td>2001</td>
  97.       </tr>
  98.       <tr>
  99.         <td>iPhone</td>
  100.        <td>2007</td>
  101.       </tr>
  102.       <tr>
  103.         <td>iPad</td>
  104.        <td>2010</td>
  105.    </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement