remove the dot from ul code example
Example 1: eliminate dots li
ul {
list-style-type: none;
}
Example 2: disable bullets in ul
ul{
list-style: none;
}
Example 3: li no bullet
list-style-type: none;
Example 4: remove dot from ul
ul {
list-style-type: none;
}