Specifies the type of bullet or number to use. The values depend on what type of list
you are using.
Ordered: Values are "A" for uppercase letters, "a" for lowercase
letters, "I" for uppercase Roman numerals, "i" for lowercase Roman
numerals, or, the default, "1" for numbers.
Unordered: Values are "circle" for hollow bullets, "square" for
square bullets, or, the default "disc" for solid bullets.
<ul>
<li type="disc">Item 1</li>
<li type="circle">Item 2</li>
<li type="square">Item 3</li>
</ul>
<ol>
<li type="1">Item 1</li>
<li type="A">Item 2</li>
<li type="a">Item 3</li>
<li type="I">Item 4</li>
<li type="i">Item 5</li>
</ol>
- Item 1
- Item 2
- Item 3
- Item 4
- Item 5