What are the different types of lists available in HTML?

The different types of lists available in HTML are:

1. Unordered List: An unordered list is a list of items displayed using bullet symbols.

Example:

  • Apples
  • Oranges
  • Bananas

2. Ordered List: An ordered list is a list of items displayed using numbers or letters.

Example:

  1. Apples
  2. Oranges
  3. Bananas

3. Description List: A description list is a list of items with a description of each item.

Example:

Apples
A round, red fruit.
Oranges
A round, orange fruit.
Bananas
A long, yellow fruit.

What are the different types of lists in HTML?

1. Unordered List: An unordered list is a list of items that are not ordered in any particular way. Each list item is marked with a bullet or other symbol.

Example:

  • Apple
  • Banana
  • Orange

2. Ordered List: An ordered list is a list of items that are numbered or alphabetized. Each list item is marked with a number or letter.

Example:

  1. First item
  2. Second item
  3. Third item

3. Description List: A description list is a list of terms, with a description or definition of each term. Each list item consists of a term and a description.

Example:

Apple
A round, red fruit.
Banana
A long, yellow fruit.
Orange
A round, orange fruit.