
HTML supports unnumbered, numbered, and definition lists. You can nest lists too (put one kind of list in another kind), but use this sparingly because too many nested items can get difficult to follow.
Unnumbered Lists
To Make an Unnumbered, Bulleted List
1. Start with an opening list tag <UL>
2. Enter the <LI> (list Item) tag followed
by the individual item, no closing </LI>
tag is needed.
3. End the entire list with a closing list </UL>
Below is a sample three-item list:
<UL>
<LI> apples
<LI> bananas
<LI> grapefruit
</UL>
The output looks like this:
· apples
· bananas
· grapefruit
The <LI>
list items can contain multiple paragraphs. Indicate the paragraphs with the
<P> tags.
© Copyright 2002 Carnegie Webhead's