The ul and ol list tags
There are three types of lists. The first two are bulleted and numbered lists. Needless to say, those on high who name such things couldn't simply call them "Bulleted" or "Numbered", but "Unordered" and "Ordered". Whatever – I guess it could be worse.
UL – Unordered lists:
Example:
Oranges
Bananas
UL Code:
<ul>
<li>List item 1</li>
<li>List item 2</li>
</ul>
OL – Ordered Lists:
Example:
Breakfast
Lunch
Dinner
OL Code:
<ol>
<li>List item 1</li>
<li>List item 2</li>
</ol>
Lists can be "nested" or put inside one another.
Fruit
Oranges
Bananas
Vegetables:
Peas
Corn