Ordered lists

Lists ordered by numbers:

LayoutHTML tagsComments
  1. Item 1
  2. Item 2
  3. Item 3
<ol type="1">
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ol>
opening an ordered list 
  list items 
  are numbered
  automatically
closing an ordered list

Lists ordered by small Roman numerals:

LayoutHTML tagsComments
  1. Item 1
  2. Item 2
  3. Item 3
<ol type="i">
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ol>
opening an ordered list 
  list items 
  are numbered
  automatically
closing an ordered list

Lists ordered by capital Roman numerals:

LayoutHTML tagsComments
  1. Item 1
  2. Item 2
  3. Item 3
<ol type="I">
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ol>
opening an ordered list 
  list items
  are numbered
  automatically
closing an ordered list

Lists ordered by low-case letters:

LayoutHTML tagsComments
  1. Item 1
  2. Item 2
  3. Item 3
<ol type="a">
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ol>
opening an ordered list 
  list items
  are numbered
  automatically
closing an ordered list

Lists ordered by upper-case letters:

LayoutHTML tagsComments
  1. Item 1
  2. Item 2
  3. Item 3
<ol type="A">
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ol>
opening an ordered list 
  list items
  are numbered
  automatically
closing an ordered list