What is an Ordered List in HTML?
An ordered list is a list of items in a specific order (like steps in a recipe or ranking items). It uses numbers (or letters, Roman numerals, etc.).
Key Tag:
-
<ol>
= Ordered List (stands for “ordered list”) <li>
= List Item (each item inside the list)
Example: <ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>