References

Collection of references for web development.

HTML ol tag

Description

The HTML <ol> element represents an ordered list. The list can be numerical or alphabetical.

Attributes

Attribute Value Description
reversed boolean Specifies whether the content should be reversed or not.
start number Specifies the start value for numbering the list.
type a
A
i
I
1
Specifies the numbering type.

Example

<ol>
	<li>One</li>
	<li>Two</li>
	<li>Three</li>
</ol>

Example #2

<ol type="I">
	<li>One</li>
	<li>Two</li>
	<li>Three</li>
</ol>