This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
The HTML
tag defines an ordered list. An ordered list can be numerical or alphabetical.An ordered list starts with the
tag. Each list item starts with the tag. The list items will be marked with numbers by default:<ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>
The
attribute of the tag, defines the type of the list item marker:Type | Description |
---|---|
type="1" | The list items will be numbered with numbers (default) |
type="A" | The list items will be numbered with uppercase letters |
type="a" | The list items will be numbered with lowercase letters |
type="I" | The list items will be numbered with uppercase roman numbers |
type="i" | The list items will be numbered with lowercase roman numbers |
<ol type="1"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>
<ol type="A"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>
<ol type="a"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>
<ol type="I"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>
<ol type="i"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>
By default, an ordered list will start counting from 1. If you want to start counting from a specified number, you can use the
attribute:<ol start="50"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>
Lists can be nested (list inside list):
<ol> <li>Coffee</li> <li>Tea <ol> <li>Black tea</li> <li>Green tea</li> </ol> </li> <li>Milk</li> </ol>
Note: A list item (
) can contain a new list, and other HTML elements, like images and links, etc.Tag | Description |
---|---|
<ul> | Defines an unordered list |
<ol> | Defines an ordered list |
<li> | Defines a list item |
<dl> | Defines a description list |
<dt> | Defines a term in a description list |
<dd> | Describes the term in a description list |
For a complete list of all available HTML tags, visit HTML Tag Reference.