Computer Science, asked by arushmorolia, 4 months ago


Which is not a type of Unordered List in HTML?

Answers

Answered by sanjaymaddheshiya65
1

Answer:

<ul>

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ul>

Unordered HTML List - Choose List Item Marker

The CSS list-style-type property is used to define the style of the list item marker. It can have one of the following values:

Value Description

disc Sets the list item marker to a bullet (default)

circle Sets the list item marker to a circle

square Sets the list item marker to a square

none The list items will not be marked

Example - Disc

<ul style="list-style-type:disc;">

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ul>

Example - Circle

<ul style="list-style-type:circle;">

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ul>

Example - Square

<ul style="list-style-type:square;">

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ul>

Example - None

<ul style="list-style-type:none;">

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ul>

Explanation:

thanks to my answer

Answered by simran2390
0

Answer:

DNS stand for domain name system sorry I got confused

Similar questions