Login for Software or Support

CoffeeCup - HTML Editor, Flash & Web Design Software

Over 48,871,538 Downloads in 87 Countries

Tell a Friend About Our Cool Software

Buy the Book Here !

Chapter 2: Tags for Creating Lists


HTML supports two kinds of lists, the ordered list in which items are numbered sequentially, and the unordered list in which items are displayed with bullets. They work essentially the same way. First, you use the ordered list tag <ol> or the unordered list tag >ul> to enclose the
entire list. Then within the list you use the list item tag <li> to enclose each list item. Here's an example; Figure 2-3 shows how these lists are displayed.

<body>
<ul>
    <li>Item 1.</li>
    <li>Item 2.</li>
    <li>Item 3.</li>
</ul>
<ol>
    <li>Item 1.</li>
    <li>Item 2.</li>
    <li>Item 3.</li>
</ol>
</body> Lists

Figure 2-3. HTML lets you include both ordered and unordered lists in your Web pages.


Table of Contents
Download Our Software:

... and don't forget about our Free Software

CoffeeCup Home Page | Software | Copyright & Legal | Site Map | © 1996 - 2008 CoffeeCup Software, Inc.