explain the three types of list in HTML5.
Answers
Answered by
2
There are three list types in HTML: unordered list — used to group a set of related items in no particular order. ordered list — used to group a set of related items in a specific order. description list — used to display name/value pairs such as terms and definitions.
Answered by
0
Answer:
There are 2 types of lists.
1. ordered list <ol> </ol>
It is of different types such as:
1. 2. 3. .....
a. b. c. .....
A. B. C. .....
i. ii. iii. ....
etc.
2. Unordered list <ul> </ul>
It has 3 more types: circle, disc, square
Both of them use <li> tag which represents each list item
Similar questions