Ordered Lists in HTML
In addition to unordered lists, there are also ordered lists. In them, each item is designated by number markers instead of point markers. Ordered lists are created using the ol tag, and the items of such lists are designated by li tags.
The nice thing about ordered lists is that I can insert a new list item anywhere, and the numbering will automatically rearrange itself (meaning you don't have to keep track of it if something changes, as you would have to do if you were doing it manually).
Let's make an ordered list using the ol tag:
<ol>
<li>text</li>
<li>text</li>
<li>text</li>
<li>text</li>
<li>text</li>
</ol>
:
Repeat the example below: