top of page

LISTS
There are 3 kinds of lists: 

  1. Ordered lists

  2. Unordered lists

  3. Definition lists

The ul tag
<ul></ul>

The ul tag is used to define unordered lists.

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: 

ul demo
ul output

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

ol demo
Screen Shot 2021-08-25 at 6.38.47 PM.png
bottom of page