LIST

CODE RESULT
NAME: Ordered List
<OL>
<LI>apples
<LI>tomatoes
<LI>Oranges
</OL>
  1. apples
  2. tomatoes
  3. Oranges
NAME: Ordered List type="a"
<OL type="a">
<LI>apples
<LI>tomatoes
<LI>Oranges
</OL>
  1. apples
  2. tomatoes
  3. Oranges
NAME: Unordered List Square.
<UL type="square">
<LI>apples
<LI>tomatoes
<LI>oranges
</UL>
  • apples
  • tomatoes
  • oranges
NAME: Unordered List Circle.
<UL type="circle">
<LI>apples
<LI>tomatoes
<LI>oranges
</UL>
  • apples
  • tomatoes
  • oranges
NAME: Designated List.
<DL>
<DD>apples
<DD>tomatoes
<DD>oranges
</DL>
apples
tomatoes
oranges
NAME: Definition List.
<DL>
<DT>apples
<DD>Apples are good for your health.
<DT>Tomatoes
<DD>Tomatoes can be great in salads.
</DL>
apples
Apples are good for your health.
Tomatoes
Tomatoes can be great in salads.
NAME: Nested List.
<UL><LI>Apples
<UL><LI>Tomatoes
<UL><LI>Oranges
</UL>
  • Apples
  • Tomatoes
  • Oranges

Valid HTML 4.01 Transitional