HTML - Ordered List
simple ordered list code
<ol> <li>list item </li> <li>another list item</li> </ol> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
ordered list style lower alpha
<ol style="list-style:lower-alpha"> <li>list item </li> <li>another list item</li> </ol> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
ordered list style upper alpha
<ol style="list-style:upper-alpha"> <li>list item </li> <li>another list item</li> </ol> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
ordered list style lower roman
<ol style="list-style:lower-roman"> <li>list item </li> <li>another list item</li> </ol> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
ordered list style upper roman
<ol style="list-style:upper-roman"> <li>list item </li> <li>another list item</li> </ol> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
ordered list style background color gray
<ol style="background-color:gray"> <li>list item </li> <li>another list item</li> </ol> |
This is how it will appear in a browser |
|
View above example output in a new browser window |