list style type in html code example
Example 1: bullet list html
<ul>
<li>Eggs</li>
<li>Pancakes</li>
<li>Jelly</li>
</ul>
Example 2: list-style-type
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>
<ul>
<li>Eggs</li>
<li>Pancakes</li>
<li>Jelly</li>
</ul>
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>