If you already know how to specify alternative numbering sequences for ordered lists, you can skip this lesson.
In the last lesson, we saw that the browser numbers each list item 1., 2., 3., ..., n automatically, by default. Advanced browsers also support other numbering sequences, like: A., B., C., etc; a., b., c., etc.; I., II., III., IV., etc.; i., ii., iii., iv., etc. HTML provides the 'TYPE' attribute as a means for specifying which numbering sequence you want the remote browser to use for a specific ordered list. When using it, you specify the value for the attribute inside the opening tag for the ordered list, as follows:
<OL TYPE="sequence-value">
The following values are permissable:
"A" [A., B., C., etc]
"a" [a., b., c., etc.]
"I" [I., II., III., IV., etc.]
"i" [i., ii., iii., iv., etc.]
"1" [1., 2., 3., etc.]
<OL TYPE="A"> <U><B>Things Shakespeare is <I>Not</I> Famous For</B></U><BR> <LI> inventing the macarena <LI> judging chili cook-offs <LI> wearing trashy lipstick </OL> <OL TYPE="a"> <U><B>Things the Pope is <I>Not</I> Famous For</B></U><BR> <LI> numerous appearances on MTV <LI> posing for body-builder magazines <LI> hobnobbing with the "Church Lady" </OL> <OL TYPE="I"> <U><B>Things Slick Willie is <I>Not</I> Famous For</B></U><BR> <LI> saying what he means <LI> keeping to his diet (I should talk...) <LI> coloring inside the lines </OL> <OL TYPE="i"> <U><B>Things Microsoft is <I>Not</I> Famous For</B></U><BR> <LI> no waiting on their tech support line <LI> flawless operating systems <LI> free upgrades </OL> <OL TYPE="1"> <U><B>Things Maddog is <I>Not</I> Famous For</B></U><BR> <LI> mowing down wildflowers <LI> keeping his opinion to himself <LI> keeping it short </OL>
In the example, observe how we controlled the type of sequence that was used in the ordered list, by specifying a "TYPE" in the opening tag. In most HTML tags, the value of an attribute is not "case sensitive", that is, it doesn't matter if it's upper case or lower case letters. But the '<OL>' tag is an exception. For example, <OL TYPE="A"> specifies a different sequence than <OL TYPE="a"> .