Using the attribute TYPE defines
the type of bullet or numbering style.
- In unordered lists,
TYPE can assume the value
DISC ,
CIRCLE , or
SQUARE .
<UL> TYPE=SQUARE>
<LI> Item One.
<LI> Item Two.
</UL>
diplays as
- Item One.
- Item Two.
- In ordered lists,
TYPE
defaults to Arabic numbers, but can be set to the alphabet or Roman
numerals.
TYPE=1 |
Arabic numbers |
1,2,3 |
TYPE=a |
lower alpha |
a,b,c |
TYPE=A |
upper alpha |
A,B,C |
TYPE=i |
lower Roman |
i,ii,iii |
TYPE=I |
upper Roman |
I,II,III |
<OL TYPE=I>
<LI> Item One.
<LI> Item Two.
<LI> Item Three.
</OL>
diplays as
- Item One.
- Item Two.
- Item Three.
|