list items without bullets in html code example
Example 1: list html without bullets
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>
Example 2: css list no bullets
#my-list-element {
list-style-type: none;
padding-left: 0px;
}