|
|
|
 |
|
Numbered List
|
|
<!-- ~~~~~~~~~~~~~ CODE ~~~~~~~~~~~ -->
<ol>
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
</ol>
|
How it looks in the browser
- First Item
- Second Item
- Third Item
|
|
Upper Case Alpha
|
|
<!-- ~~~~~~~~~~~~~ CODE ~~~~~~~~~~~ -->
<ol style="list-style-type: upper-alpha">
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
</ol>
|
How it looks in the browser
- First Item
- Second Item
- Third Item
|
|
Lower Case Alpha
|
|
<!-- ~~~~~~~~~~~~~ CODE ~~~~~~~~~~~ -->
<ol style="list-style-type: lower-alpha">
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
</ol>
|
How it looks in the browser
- First Item
- Second Item
- Third Item
|
|
Upper Case Roman
|
|
<!-- ~~~~~~~~~~~~~ CODE ~~~~~~~~~~~ -->
<ol style="list-style-type: upper-roman">
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
</ol>
|
How it looks in the browser
- First Item
- Second Item
- Third Item
|
|
Lower Case Roman
|
|
<!-- ~~~~~~~~~~~~~ CODE ~~~~~~~~~~~ -->
<ol style="list-style-type: lower-roman">
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
</ol>
|
How it looks in the browser
- First Item
- Second Item
- Third Item
|
Author - Alan Dunbar

|
|
|