Lists in HTML

by danielkwood

HTML

<html>
  <head>
     <title>Lists</title>
  </head>
  <body>
     <h3>My bullet list:</h3>
     <ul>
        <li>List item 1</li>
        <li>List item 2</li>
        <li>List item 3</li>
     </ul>
     <h3>My numbered list:</h3>
     <ol>
        <li>List item 1</li>
        <li>List item 2</li>
        <li>List item 3</li>
     </ol>
  </body>
</html>