HTML can format three types of lists: an ordered list <ol>, an unordered list <ul>, and a descriptive list <dl>. |
Here's an unordered list of topics about a company that people might be interested in. |
<ul> |
<li> About Handmade Oriental Rugs |
<li> Catalog of Rugs |
<li> Ordering Information |
</ul> |
The result of the formatting will be bulleted items. |
Ordered lists are the same, except that you put <ol> in place of <ul> and the items will be numbered in the result. |