-1

How to remove point from li tag? so that only the title remains

 <ul>
    <li>home</li>
    <li>about</li>
    <li>contact</li>
  </ul>
StefanoM
  • 19
  • 1
  • 3

2 Answers2

1

You can find this example at w3school. Just add to your CSS

ul{list-style-type:none};
0

You need to add a CSS class for that This should resolve the problem:

<ul style="list-style-type:none;">
LionKing
  • 516
  • 5
  • 9