![]() |
|
Menu
Online Stores
Search this Site
Miscellaneous |
Path = Home : HTML Design Tips : How To Customize Your Ordered Lists |
|
How To Customize Your Ordered Lists
The <ol> tag is used to create a numbered ordered list. Ordered list with numbersThis is the default<ol>
Ordered list with lowercase lettersTo display your list with lowercase letters (a,b,c) instead of numbers (1,2,3) add <type="a"> to the <ol> tag. <ol type="a">
Ordered list with uppercase lettersTo display your list with uppercase letters (A,B,C) add <type="A"> to the <ol> tag. <ol>
Ordered list with lowercase Roman numeralsTo display your list with lowercase Roman numerals (i,ii,iii), add <type="i"> to the <ol> tag. <ol type="i">
Ordered list with uppercase Roman numeralsTo display your list with uppercase Roman numerals (I,II,III), add <type="I"> to the <ol> tag. <ol>
|
||