html list no decoration code example
Example 1: disable bullets in ul
ul{
list-style: none;
}
Example 2: list html without bullets
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>
ul{
list-style: none;
}
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>