1. <html>
  2. <head>
  3. <title>Assignment One - TheMarshmallow</title>
  4. <h1>Assignment One</h1>
  5. </head>
  6. <body>
  7. <p>
  8. I'm not sure if you will see this <em>but</em> that doesn't mean I'm not going to try. I've done <q>some</q> HTML on and off before but never something like <strong>this</strong>
  9. </p>
  10. <p>
  11. <button>Space</button> is big. You just won't believe how vastly, hugely, mind-bogglingly big it is. I mean, you may think it's a long way down the road to the chemist's, but that's just peanuts to space.
  12. </p>
  13. <p>
  14. Things that are awesome about space
  15.      <ul>
  16.          <li> It's big </li>
  17.          <li> It's growing </li>
  18.          <li> It's <em>almost</em> endless</li>
  19.          <li> It's space </li>
  20.      </ul>
  21. </p>
  22. <table border cellpadding=2>
  23.      <tr align=center>
  24.          <th> Does it have..?</th>
  25.          <th> Space </th>
  26.          <th> Some other thing thats not space </th>
  27.     </tr>
  28.     <tr align=center>
  29.          <td>The name space</td>
  30.          <td>Yes</td>
  31.          <td>No</td>
  32.     </tr>
  33.     <tr align=center>
  34.          <td>An <em>almost</em> infinite amount of things</td>
  35.          <td>Yes</td>
  36.          <td>Probably not</td>
  37.     </tr>
  38. </table>
  39. </body>
  40. </html>