Unordered Lists


Use the <UL> tag to start an unordered list of items, and use the </UL> to end the unordered list.

Each item in an unordered list is indented. Start each item of the list with the <LI>, or list item, tag. The item will be preceded by a "bullet".

For example, the following HTML source code:


Here is a list of Mexican cities.
<UL>
<LI>Mexico City
<LI>Guadalajara
<LI>Monterrey
<LI>Acapulco
<LI>Tasco
</UL>

Would display this unordered list on the user's screen:

Here is a list of Mexican cities.
Items in the list can contain more than one paragraph. For that use the <P> tag.

I understand unordered lists. Let's look at ordered lists.


[INDEX] [PREVIOUS] [NEXT PAGE] [CHAPTER 5]

Valid HTML 3.2!