HTML Ordered List Element (OL)

Here is an ordered list of items, Where TYPE attribute = "a"

  1. item one
  2. item two
  3. item three

The source code:
<OL TYPE="a">
<LI>item one
<LI>item two
<LI>item three
</OL>

Here is an ordered list of items, Where TYPE attribute = "i"

  1. item one
  2. item two
  3. item three

The source code:
<OL TYPE="i">
<LI>item one
<LI>item two
<LI>item three
</OL>

Here is an ordered list of items, Where TYPE attribute = "I"

  1. item one
  2. item two
  3. item three

The source code:
<OL TYPE="I">
<LI>item one
<LI>item two
<LI>item three
</OL>



previous slide | next slide
Return to Beginning of Presentation
Return to Software Development Library