CoderTools
Independence Software LLP

HTML Lists


Three types of list

  • Unordered List
  • Ordered List
  • Definition List


Unordered List

Example:
  • Hello from WebCodeGuide!
  • Nice list!
  • Last list item!
    <UL>
        <LI>Hello from WebCodeGuide</LI>
        <LI>Nice list!</LI>
        <LI>Last list item!</LI>
    </UL>

Ordered List

Example:
  1. Hello from WebCodeGuide!
  2. Nice list!
  3. Last list item!
    <OL>
        <LI>Hello from WebCodeGuide</LI>
        <LI>Nice list!</LI>
        <LI>Last list item!</LI>
    </OL>

Definition List

Example:
Lower cost
The new version of this product
Easier to use
We've changed the product so that it's much easier to use!
Safe for kids
You can leave your kids alone in a
<DL>
    <DT><STRONG>Lower cost</STRONG>
    <DD>The new version of this product
    <DT><STRONG>Easier to use</STRONG>
    <DD>We've changed the product 
    <DT><STRONG>Safe for kids</STRONG>
    <DD>You can leave your kids alone 
</DL>
28/05/2012 17:22:06