Create Unordered list with no bullets in HTML
In normal if we use unordered list in your HTML document it will display with bullet symbols. In order to remove the bullet symbol just add the below css style.
ul
{
list-style-type: none;
}
To remove bullet in particular unordered list just mention the class name or id in css style sheet
.nobullet{
list-style-type: none;
}
