how to remove dot from ul in html code example
Example 1: remove bullets from list css
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
Example 2: how to remove the dots from ul
ul {
list-style: none;
}
Example 3: remove list bullet css
list-style-type: none,
Example 4: how to remove dots from front in tag html
in HTML document
<ul>
<li>1</li>
<li>2</li>
</ul>
output :
.1
.2
use <ul style="list-style-type:none;">
output:
1
2