next up previous contents index
Next: Horizontal Lines Up: An Explanation of the Previous: Paragraphs

Bulleted and Numbered Lists

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.



Send comments to consult@rpi.edu