FTLS.org 
Francais     English
 
 
Home
 
 Linux
Links
 
 Tutorial
HTML
 
 Archives
Java
Perl Tools
Scripts CGI
Scripts PHP
 
 Calculators
HP 48
TI 92
 
 Free
E-Mail
Games
Jobs
Jokes
Mini Messages
Web
 
 Search
The Liste...
Selection
DirectAccess
 
 Powered by
linux
 

Tutorial


HTML.



5. Lists

    5.1 Unordered Lists

    Unordered List <UL>
    <LI>Item 1
    <LI>Item 2
    <LI>Item 3
    </UL>
    • Item 1
    • Item 2
    • Item 3
    Unordered List
    (multi-level)
    <UL>
    <LI>Level 1, Item 1
    <UL>
    <LI>Level 2, Item 1
    <UL>
    <LI>Level 3, Item 1
    <LI>Level 3, Item 2
    </UL>
    <LI>Level 2, Item 2
    </UL>
    </UL>
    • Level 1, Item 1
      • Level 2, Item 1
        • Level 3, Item 1
        • Level 3, Item 2
      • Level 2, Item 2
    Unordered List
    (with option)
    <UL PLAIN>
    ...
    </UL>
    • Item 1
    • Item 2
    • Item 3
    Unordered List
    (with options)
    <UL PLAIN COMPACT>
    ...
    </UL>
    • Item 1
    • Item 2
    • Item 3
    Unordered List
    (with options)
    <UL PLAIN WRAP=horiz>
    ...
    </UL>
    • Item 1
    • Item 2
    • Item 3
    Unordered List
    (with List Heading)
    <UL>
    <LH>Heading</LH>
    <LI>Item 1
    <LI>Item 2
    </UL>
      Heading
    • Item 1
    • Item 2
    Unordered List
    (with bullet style option)
    <UL TYPE=circle>
    ...
    </UL>
    • Item 1
    • Item 2
    Unordered List
    (with bullet style option)
    <UL TYPE=square>
    ...
    </UL>
    • Item 1
    • Item 2
    Unordered List
    (with bullet style option)
    <UL TYPE=disc>
    ...
    </UL>
    • Item 1
    • Item 2
    Unordered List
    (with bullet style options)
    <UL>
    <LI TYPE=circle>...
    <LI TYPE=square>...
    <LI TYPE=disc>...
    </UL>
    • Item 1
    • Item 2
    • Item 3
    Unordered List
    (items without list)
    <LI>Item 1
    <LI>Item 2
    <LI>Item 3
  • Item 1
  • Item 2
  • Item 3
  • Directory List
    (like an unordered list)
    Items should be less
    than 20 characters long
    <DIR>
    <LI>Item 1
    <LI>Item 2
    <LI>Item 3
    </DIR>
  • Item 1
  • Item 2
  • Item 3
  • Menu List
    (like an unordered list)
    Presents an interactive list
    (?)
    <MENU>
    <LI>Item 1
    <LI>Item 2
    <LI>Item 3
    </MENU>
  • Item 1
  • Item 2
  • Item 3
    5.2 Ordered Lists

    Ordered List <OL>
    <LI>Item 1
    <LI>Item 2
    <LI>Item 3
    </OL>
    1. Item 1
    2. Item 2
    3. Item 3
    Ordered List
    (multi-level)
    <OL>
    <LI>Level 1, Item 1
    <OL>
    <LI>Level 2, Item 1
    <OL>
    <LI>Level 3, Item 1
    <LI>Level 3, Item 2
    </OL>
    <LI>Level 2, Item 2
    </OL>
    </OL>
    1. Level 1, Item 1
      1. Level 2, Item 1
        1. Level 3, Item 1
        2. Level 3, Item 2
      2. Level 2, Item 2
    Ordered List
    (with option)
    <OL TYPE="i">
    ...
    </OL>
    1. Item 1
    2. Item 2
    3. Item 3
    4. Item 4
    5. Item 5
    Ordered List
    (with options)
    <OL TYPE="I" START=6>
    ...
    </OL>
    1. Item 1
    2. Item 2
    3. Item 3
    4. Item 4
    5. Item 5
    Ordered List
    (with option)
    <OL TYPE="a">
    ...
    </OL>
    1. Item 1
    2. Item 2
    3. Item 3
    4. Item 4
    5. Item 5
    Ordered List
    (with option)
    <OL TYPE="A">
    ...
    </OL>
    1. Item 1
    2. Item 2
    3. Item 3
    4. Item 4
    5. Item 5

    5.3 Definition Lists

    Definition List <DL>
    <DT>Term 1
    <DD>Defn 1
    <DT>Term 2
    <DD>Defn 2
    ...
    </DL>
    This is the <DT> text.
    This is the <DD> text.
    Here's a second hunk of <DT> text repeated three times. Here's a second hunk of <DT> text repeated three times. Here's a second hunk of <DT> text repeated three times.
    Here's a second hunk of <DD> text repeated three times. Here's a second hunk of <DD> text repeated three times. Here's a second hunk of <DD> text repeated three times.
    DT
    DD following very short DT
    DT
    DD following very short DT
    Definition List
    (with option)
    <DL COMPACT>
    <DT>Term 1
    <DD>Defn 1
    <DT>Term 2
    <DD>Defn 2
    ...
    </DL>
    This is the <DT> text.
    This is the <DD> text.
    Here's a second hunk of <DT> text repeated three times. Here's a second hunk of <DT> text repeated three times. Here's a second hunk of <DT> text repeated three times.
    Here's a second hunk of <DD> text repeated three times. Here's a second hunk of <DD> text repeated three times. Here's a second hunk of <DD> text repeated three times.
    DT
    DD following very short DT
    DT
    DD following very short DT

    5.4 Other Lists

    Directory List
    (like an unordered list)
    Items should be less
    than 20 characters long
    <DIR>
    <LI>Item 1
    <LI>Item 2
    <LI>Item 3
    </DIR>
  • Item 1
  • Item 2
  • Item 3
  • Menu List
    (like an unordered list)
    Presents an interactive list
    (?)
    <MENU>
    <LI>Item 1
    <LI>Item 2
    <LI>Item 3
    </MENU>
  • Item 1
  • Item 2
  • Item 3



 
© Copyright 2000 FTLS (Tyndiuk Frédéric). All rights reserved.
Last Update 08/03/2000 - Send all comments to webmaster@ftls.org