|
HTML Attribute for <LI ...>
TYPE =DISC |CIRCLE |SQUARE |1 |A |a |I |i
Don't use it.  |
TYPE is good for confusing your readers by switching numbering or bullet style midstream. When you use TYPE, that line item and all subsequent items use the specified type.
<UL>
<LI>cake
<LI>pudding
<LI TYPE=CIRCLE>scones
<LI>cobbler
</UL>
produces
- cake
- pudding
- scones
- cobbler
<LI VALUE="..."> >
|