![]()
HTML supports the following list types:
To define an Unnumbered List, you should use the <UL> tag to start the list, </UL> to end the list, and <LI> to specify each list item for example:
<UL> <LI>first item <LI>second item </UL>
Displays:
To define an Ordered List you use the <OL> and </OL> tags instead:
<OL> <LI>first item <LI>second item </OL>
Displays:
What about nested lists, how do they work?