Tell a Friend About Our Cool Software

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>
Figure 2-3. HTML lets you include both ordered and unordered lists in your Web pages.