How to make a list:
unordered list:
<ul> opens an unordered list
<li> creates a list item </li>
</ul> closes your unordered list
To create style:
- style="list-style-type: disc"
- style="list-style-type: circle"
- style="list-style-type: square"
- style="list-style-type: none"
How to create an unordered list with an image bullet:
<ul style="list-style-image:url('image_path')">
How to create ordered lists:
<ol type="A"> Capitalized Alpha List
<ol type="a"> Lowercase Alpha List
<ol type="I"> Uppercase Roman Numeral List
<ol type="i"> Lowercase Roman Numeral List
<ol start="10"> Starting a numbered list higher