Lists can have any number of list items. To add to the list, place additional list items between the <ol> and </ol> tags.

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

Make sure to place the list item between <li> and </li>.