Lists

This is an ordered list
<ol>
<li>list item one
<li>list item two
<li>list item three
</ol>
  1. list item one
  2. list item two
  3. list item three
This is an unordered list
<ul>
<li>list item one
<li>list item two
<li>list item three
</ul>
  • list item one
  • list item two
  • list item three
Attributes of lists
<ol style="list-style-type:upper-alpha|lower-alpha|upper-roman|lower-roman">
<ul style="list-style-type :disc|circle|square">
<li value= " # ">

<ol style= "list-style-type:lower-roman" >
<li value="3">list item one
<li>list item two
<li>list item three
</ol>

<ul style= "list-style-type:square>
<li>list item one
<li>list item two
<li>list item three
</ul>






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


  • list item one
  • list item two
  • list item three
This is a definition list
<dl>
<dt>cat</dt>
<dd>a four legged creature in the feline family</dd>
<dt>dog</dt>
<dd>a four legged creature in the canine family</dd>
</dl>
cat
a four legged creature in the feline family
dog
a four legged creature in the canine family