How to remove point from li tag? so that only the title remains
<ul>
<li>home</li>
<li>about</li>
<li>contact</li>
</ul>
How to remove point from li tag? so that only the title remains
<ul>
<li>home</li>
<li>about</li>
<li>contact</li>
</ul>
You can find this example at w3school. Just add to your CSS
ul{list-style-type:none};
You need to add a CSS class for that This should resolve the problem:
<ul style="list-style-type:none;">