Changing bullet type in unordered lists
As we mentioned, browsers use round bullet points for unordered lists by default. However, you can set a custom bullet type using the CSS list-style-type property. Either add "list-style-type:square;"
to the <ul>
element through the style
attribute, or create a CSS rule for inside the <style>
tag: ul {list-style-type: square;}
.