<!DOCTYPE html>
<html>
<body>
<h1>The type attribute sets the type of numbering the list uses</h1>
<h2><code>a</code> for lowercase letters</h2>
<ol type="a">
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ol>
<h2><code>A</code> for lowercase letters</h2>
<ol type="A">
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ol>
<h2><code>i</code> for lowercase Roman numerals</h2>
<ol type="i">
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ol>
<h2><code>I</code> for uppercase Roman numerals</h2>
<ol type="I">
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ol>
<h2><code>1</code> for numbers (default)</h2>
<ol type="1">
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ol>
</body>