You need Unordered List <ul>
This is an unordered list.
This is an ordered list.
This is what the code looks like in html.
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
This is the result of the code.
You can make the bullets a disc, circle, square or none.
Circle style code:
<ul style="list-style-type:circle">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Circle style results:
○ Coffee
○ Tea
○ Milk