HTML has another special element for creating ordered lists, or numbered lists.
Ordered lists start with an opening
For example:
<ol>
<li>Garfield</li>
<li>Sylvester</li>
</ol>
would create a numbered list of "Garfield" and "Sylvester".
Create an ordered list of the top 3 things cats hate the most.
Prev: 15. Create a Bulleted Unordered List
Next: 17. Create a Text Field