To make a bulleted list , start the list with the
<ul> (unordered list) tag and
begin each item in the list with the
<li> tag. End the
list with the </ul> tag. For example:
Fruit: <ul> <li>Apples <li>Oranges <li>Bananas </ul>
The output will look like this:
Fruit:
Ordered (numbered) lists work the same way, except that they begin with the
<ol> tag and end with the </ol> tag.