remove bullet point in ul code example
Example 1: how to remove the bullet in li
ul {
list-style-type: none;
}
Example 2: how to remove bullet point from li
list-style-type: none;
Example 3: remove dots from ul
ul.ba {
list-style-type: none;
}