16.9k views
16 votes
HTML code to display square bullets in an unordered list​

User Sky Notify
by
4.9k points

1 Answer

6 votes

Answer:

<!DOCTYPE html>

<html>

<body>

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

<ul>

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ul>

</body>

</html>

User Fabien Kruba
by
4.8k points