To display square bullets in an unordered list.
Answers
Answered by
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