Home

HTML - Ordered List


simple ordered list code

<ol> 
    <li>list item </li>
    <li>another list item</li>
</ol>
  1. list item
  2. another list item

ordered list style lower alpha

<ol style="list-style:lower-alpha"> 
    <li>list item </li>
    <li>another list item</li>
</ol>
  1. list item
  2. another list item

ordered list style upper alpha

<ol style="list-style:upper-alpha"> 
    <li>list item </li>
    <li>another list item</li>
</ol>
  1. list item
  2. another list item

ordered list style lower roman

<ol style="list-style:lower-roman"> 
    <li>list item </li>
    <li>another list item</li>
</ol>
  1. list item
  2. another list item

ordered list style upper roman

<ol style="list-style:upper-roman"> 
    <li>list item </li>
    <li>another list item</li>
</ol>
  1. list item
  2. another list item

ordered list style background color gray

<ol style="background-color:gray"> 
    <li>list item </li>
    <li>another list item</li>
</ol>
  1. list item
  2. another list item