An unordered list (<ul>) signifies to a web browser that all list items contained inside the <ul> tag should be rendered with a bullet preceding the text. The default bullet type for most web browsers is a full disc (black circle), but this can be adjusted using an HTML attribute called type.
<h4 align="center">Shopping List</h4> <ul> <li>Milk</li> <li>Toilet Paper</li> <li>Cereal</li> <li>Bread</li> </ul>
<ul type="square"> <ul type="disc"> <ul type="circle">
type="square"
Milk
Toilet Paper
Cereal
Bread
type="disc"
Milk
Toilet Paper
Cereal
Bread
type="circle"
Milk
Toilet Paper
Cereal
Bread