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