HTML Unordered Lists
Unordered lists show items with bullets.
An unordered list uses <ul>, with each item in an <li>. The list-style-type property changes the bullet marker.
Bullet styles
<!DOCTYPE html>
<html>
<body>
<ul style="list-style-type:circle;">
<li>Coffee</li>
<li>Tea</li>
</ul>
<ul style="list-style-type:square;">
<li>Coffee</li>
<li>Tea</li>
</ul>
<ul style="list-style-type:none;">
<li>Coffee</li>
<li>Tea</li>
</ul>
</body>
</html>