Computer Science, asked by sumansonthalia81, 7 months ago

To display square bullets in an unordered list.​

Answers

Answered by Anjana2005
3

Answer:

To create unordered list in HTML, use the <ul> tag.

Explanation:

<html>

<body>

<h1>Unordered List with Square Bullets</h1>

<ul style="square">

 <li>Coffee</li>

 <li>Tea</li>

 <li>Milk</li>

</ul>

</body>  

</html>

Similar questions