explain unordered list?
Answers
Answered by
4
Answer:
An unordered list typically is a bulleted list of items. HTML 3.0 gives you the ability to customise the bullets, to do without bullets and to wrap list items horizontally or vertically for multicolumn lists. The opening list tag must be <UL>.
MARK AS BRAINLIEST
Answered by
24
☆ Unordered List ☆
An unordered list is a collection of related items that have no special order or sequence. This list is created by using HTML <ul> tag. Each item in the list is marked with a bullet.
Example:
<html>
<head>
<title>HTML Unordered List</title>
</head>
<body>
<ul>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ul>
</body>
</html>
Similar questions
English,
5 months ago
English,
5 months ago
Math,
5 months ago
Computer Science,
10 months ago
Math,
1 year ago