top of page
LISTS
There are 3 kinds of lists:
-
Ordered lists
-
Unordered lists
-
Definition lists
The ul tag
<ul></ul>
The ul tag is used to define unordered lists.
The ol tag
<ol></ol>
The li tag
<li></li>
The li tag is used to define each list item.
For the time being, we'll focus on Ordered and Unordered lists:
Here's an example of an unordered list:


Simply change both ul tags to ol tags to get an ordered list:


bottom of page