list ul without bullet code example
Example 1: list html without bullets
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>
Example 2: ul no bullets
<ul style="list-style-type:none;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>