Setting Up Lists

HTML offers several different list styles, but I discuss only two of them in this section: numbered lists and bulleted lists.

If you want to include a numbered list of items—a Top Ten list, bowling league standings, or any kind of ranking—you don't need to add the numbers yourself. Instead, you can use HTML ordered lists to make the Web browser generate the numbers for you.

Ordered lists use two types of tags:

  • The entire list is surrounded by the <OL> and </OL> tags.

  • Each item in the list is preceded by the <LI> (list item) tag.

The general setup looks like this:

<OL>
<LI>First item.
<LI>Second item.
<LI>Third item.
<LI>You get the idea.
</OL>

Follow these steps to generate a numbered list within FrontPage Express:

1.
Position ...

Get Windows® 98 Unleashed now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.