Lists

When we need to list items, there are a few options in HTML.

Unordered lists

These are lists where the order is arbitrary, for example colours:

Ordered lists

These are lists where the order affects the meaning, such as the days of the week:

  1. Monday
  2. Tuesday
  3. Wednesday
  4. Thursday
  5. Friday
  6. Saturday
  7. Sunday

Ordered lists can be reversed, such as a countdown:

  1. Bronze
  2. Silver
  3. Gold

Ordered lists can also be started at a specified number:

  1. Saturday
  2. Sunday

Description/definition lists

These are lists that contain key-value pairs. Sometimes there can be more than one value for each key.

Name
Jane Doe
Age
30
Height
160cm
Eye colour
Brown
Favourite animal
Dogs
Cats