Computer Science, asked by vanshika2744, 10 months ago

explain unordered list?​

Answers

Answered by rishabh00027
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 simran7539
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