Home → References → HTML Tags →
HTML Tag: ol
Ordered list. Used to define a list that has a logical sequence. Used in conjunction with li to define the list items.
HTML Dog is hosted by Titan Internet
Required Attributes
- None.
Optional Attributes
Example
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>

