One type of list is an ordered list.

An ordered list displays a list of numbered items. Like the results of a race.

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