HTML Tutorial

Ordered Lists in HTML

Ordered lists are used to display a list of items in a specific order. They are helpful when you need to present information sequentially, such as steps in a process or a ranked list. In HTML, you create ordered lists using the <ol> tag, and each item in the list is marked with an <li> tag.

Here’s a simple example of an ordered list:

Basic Ordered List

				
					<ol>
    <li>First item</li>
    <li>Second item</li>
    <li>Third item</li>
</ol>
				
			

This code creates a list where the items are numbered automatically: 1, 2, 3, etc.

Ordered List with Custom Start Number

If you want to start the numbering from a specific number, you can use the start attribute:

				
					<ol start=”5″>
     <li>Item five</li>
     <li>Item six</li>
     <li>Item seven</li>
</ol>
				
			

In this example, the list starts from number 5.

Ordered List with Different Numbering Styles

You can change the style of the numbering using the type attribute. Here are some options:

  • Numbers (default)<ol type="1">
  • Uppercase letters<ol type="A">
  • Lowercase letters<ol type="a">
  • Roman numerals<ol type="I">

Example:

				
					<ol type=“A”>
    <li>First item</li>
    <li>Second item</li>
    <li>Third item</li>
</ol>
				
			

Try It Yourself