Unordered Lists
An unordered list is created with the <ul> tag. Each list item is marked up with the <li> tag. By default the browser renders a bullet point (disc) before each item. Use unordered lists when the sequence of items does not matter.
Changing the Bullet Style
The CSS list-style-type property changes the bullet marker. Common values are disc (filled circle, default), circle (hollow circle), square, and none (removes bullets entirely). Use list-style-image to use a custom image as a bullet. You can also use CSS content on the ::before pseudo-element for full control.
list-style-type: disc— Default filled bulletlist-style-type: circle— Hollow circlelist-style-type: square— Filled squarelist-style-type: none— No bullet