The <ol> tag represents an ordered list of items. The <li> tag is use for define list items. List items are displayed with a number in front of it. The <ol> tag has start attribute which is use to add a number where from user want to start list. User can also change numbering style with the CSS list-style-type property.
Example of Code
<ol>
<li>List item...</li>
<li>List item...</li>
<li>List item...</li>
</ol>
Output
- List item...
- List item...
- List item...
