how to get rid of dots from li tag code example
Example 1: how to remove the dots from ul
ul {
list-style: none;
}
Example 2: remove dots from li
ul {
list-style-type: none;
}
ul {
list-style: none;
}
ul {
list-style-type: none;
}