make list without bullets css code example
Example 1: remove bullets from list css
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
Example 2: list html without bullets
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>