To add more items to a list, place more list items between the <ol> and </ol> tags.

<html>
 <body>
  <ol>
   <li>Tortoise</li>
   <li>Snail</li>
   <li>Hare</li>
  </ol>
 </body>
</html>
]]>

Awesome work! Lists can have as many items as you'd like.

Make sure to place each list item between the opening tag <li> and the closing tag </li>.