Explain the three types of lists used in HTML
Answers
Answered by
5
1). Unordered list :
It is used to group a set of related items, in no particular order.
2). Ordered list :
It is used to group a set of related items, in a specific order.
3). Description list :
It is used to display name/value pairs such as terms and their definitions, or times and events.
It is used to group a set of related items, in no particular order.
2). Ordered list :
It is used to group a set of related items, in a specific order.
3). Description list :
It is used to display name/value pairs such as terms and their definitions, or times and events.
Answered by
1
Answer:
a) Ordered list
b) unordered list
c) Definition list
syntax of the following:
a) Ordered list:
<ol>
<lo><\li>
<\ol>
b) Unordered list:
<ul>
<li><\li>
<\ul>
c) Definition list:
<dl>
<dd><\dd>
<\dl>
Similar questions