Create An Unordered List Without Any Bullets
Here we consider how to create an unordered list without any bullets.
Lets start with one example here.
Suppose we have an Unordered List as shown below.

On Runtime it looks like this.

Now for removing these bullets on Unordered List, just apply following style.
ul
{
list-style-type: none;
}
By applying list-style-type as none, we can remove bullets on unordered list.
The result is as shown below.
