Computer Science, asked by arpitmishra36, 1 year ago

Create an unordered list and change the style of bullet to square. who give this answer I will him as brainliest

Answers

Answered by Anonymous
3

Hi

type attribute of unordered list is used for changing the bullet style

   <ul type="square">

       <li>List item</li>

       <li>List item</li>

       <li>List item</li>

       <li>List item</li>

   </ul>


disc, circle, square and none are can be used as as value for type attribute


Answered by siddhartharao77
2

What is unordered list:

= > It is a type of list in html in which list of items do not have any order.

Example:

<!DOCTYPE html>

<html>

<body>

<ul type = "square">

<li>A</li>

<li>B</li>

<li>C</li>

</ul>

</body>

</html>


Here, ul is called as unordered list. li is called as list. ul and li are tags.


Hope it helps!

Attachments:

arpitmishra36: hi
Similar questions