How to get these points out

Asked

Viewed 17,601 times

-1

I made a navigation bar but at the beginning of each "links" has this point

<nav class="bar">
        <ul>
            <li><a href="#">Phones</a></li>
            <li><a href="#">Connected Home</a></li>
            <li><a href="#">Gaming</a></li>
            <li><a href="#">Lapstops</a></li>
            <li><a href="#">Tablets</a></li>
            <li><a href="#">Acessories</a></li>
        </ul>
</nav>       

inserir a descrição da imagem aqui

1 answer

7


In your css, add:

li {
  list-style-type: none;
}

Or using only html:

<ul style="list-style: none;">
   <li></li>
</ul>

Cheers.

  • Thank you very much.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.