Ordered Lists in HTML<OL> <LI>First Item</LI> <LI>Second Item</LI> <LI>Third Item</LI> </OL> <OL> Ordered List List , One pair of tag is allowed. <LI> Items of Ordered List, Mulitple pairs allowed. Child of <OL> Ordered lists can be defined using <OL> ... </OL> tags. The tag <OL> indicates the start of a ordered(numbered) list while </OL> signals the end of the list. Attributes of <OL> .. </OL> :Type: This attribute indicates the type of the numbering /listing to be used.
Type = 1
<OL type=1> <LI>First Item</LI> <LI>Second Item</LI> <LI>Third Item</LI> <LI>Fourth Item</LI> <LI>Fifth Item</LI> </OL> Type = a
<OL type=a> <LI>First Item</LI> <LI>Second Item</LI> <LI>Third Item</LI> <LI>Fourth Item</LI> <LI>Fifth Item</LI> </OL> Type = A
<OL type=A> <LI>First Item</LI> <LI>Second Item</LI> <LI>Third Item</LI> <LI>Fourth Item</LI> <LI>Fifth Item</LI> </OL> Type = I
<OL type=I> <LI>First Item</LI> <LI>Second Item</LI> <LI>Third Item</LI> <LI>Fourth Item</LI> <LI>Fifth Item</LI> </OL> Type = i
<OL type=i> <LI>First Item</LI> <LI>Second Item</LI> <LI>Third Item</LI> <LI>Fourth Item</LI> <LI>Fifth Item</LI> </OL> Using styleWe can use list-style-type: to add different types of numbering to list including various languages. Here are some examples , you can try more. Adding Leading zero to decimal numbers.
<OL style='list-style-type:decimal-leading-zero'> <LI>First Item</LI> <LI>Second Item</LI> <LI>Third Item</LI> <LI>Fourth Item</LI> <LI>Fifth Item</LI> </OL> style='list-style-type:lower-greek'
<OL style='list-style-type:lower-greek'> <LI>First Item</LI> <LI>Second Item</LI> <LI>Third Item</LI> <LI>Fourth Item</LI> <LI>Fifth Item</LI> </OL> style='list-style-type:armenian'
<OL style='list-style-type:armenian'> <LI>First Item</LI> <LI>Second Item</LI> <LI>Third Item</LI> <LI>Fourth Item</LI> <LI>Fifth Item</LI> </OL> style='list-style-type:oriya'
<OL style='list-style-type:oriya'> <LI>First Item</LI> <LI>Second Item</LI> <LI>Third Item</LI> <LI>Fourth Item</LI> <LI>Fifth Item</LI> </OL>
This article is written by plus2net.com team.
![]() | ||||||||||||
Lists In HTML
| Ordered Lists
| UnOrdered Lists
| Definition Lists
| ||||||||||||