Course Content
Basic Structure of an HTML Document
0/2
HTML Attributes
0/1
HTML links and the anchor (a) tag
0/2
HTML Images and Image tag
0/1
HTML Tutorial

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>