how to remove dots from front in <ul> tag html code example
Example: 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
in HTML document
<ul>
<li>1</li>
<li>2</li>
</ul>
output :
.1
.2
use <ul style="list-style-type:none;">
output:
1
2