<LI>
<LI>
The <LI> Tag is a List Item, and is used inside
<MENU>,
<DIR>,
<OL>, and
<UL>. Depending on the type of list, the
<LI> will look like a numeric value, or a bulleted value.
- Unordered List 1
- Unordered List 2
- Unordered List 3
- Unordered List 4
<ul>
<li>Unordered List 1</li>
<li>Unordered List 2</li>
<li>Unordered List 3</li>
<li>Unordered List 4</li>
</ul>
You can also specify the List Item bullet TYPE as DISC, CIRCLE, or SQUARE
(for the Unordered List variety). or the List Item as A, a, I, or i (for
the Unordered List variety).
- Unordered List 1
- Unordered List 2
- Unordered List 3
- Unordered List 4
- Unordered List 5
- Unordered List 6
<ul>
<li type="circle">Unordered List 1</li>
<li type="circle">Unordered List 2</li>
<li type="circle">Unordered List 3</li>
<li type="square">Unordered List 4</li>
<li type="circle">Unordered List 5</li>
<li type="circle">Unordered List 6</li>
</ul>
If you specify a specific TYPE on one <LI>,
the rest of your List Items will carry that TYPE, unless you specify
otherwise. This can have different effects between Netscape and Internet
Explorer. I recommend choosing one effect and specifying it in
<MENU>,
<DIR>,
<OL>, and
<UL>, whichever
you are using.
|