rurtubia
5/31/2015 - 10:15 PM

HTML lists

HTML lists

<html>
  <body>
    <ul>
      <li>Purr </li>
      <li>jump </li>
      <li>eat the grass</li>
      <li>rip the couch </li>
      <li>scratched </li>
      <li>sunbathe</li>
    </ul>
  </body>
</html>
<html>
  <body>
    <ol>
      <li>dogs</li>
      <li>cats' websites</li>
      <li>grammar and algebra</li>
    </ol>
  </body>
</html>