List is used to display unorganized list.
Answers
Answered by
8
hope it will help you ....
please follow me ...♡♡♡
Attachments:
Answered by
0
Answer:
The HTML <ul> (Unordered list ) tag is used to display unorganized list elements.
Explanation:
The HTML element <ul> represents an unordered list of items, which is typically displayed as a bulleted list.
- An unordered list is a collection of related items that do not follow any particular order or sequence. The HTML <ul> tag is used to create this list. Each item on the list is denoted by a bullet.
- In HTML, there are three types of lists, each with its own purpose and meaning. Unordered list — A list of related items that are not in any particular order. Ordered list — A list of related items arranged in a specific order.
Example:
<ul>
<li>
Milk
</li>
<li>
Cheese
<ul>
<li>
Blue cheese
</li>
<li>Feta</li>
</ul>
</li>
</ul>
Similar questions