FTLS.org 
Francais     English
 
 
Accueil
 
 Linux
Introduction
Liens
 
 Initiation
Internet
HTML
CGI
Perl
 
 Archives
Java
Perl Tools
Scripts CGI
Scripts PHP
 
 Calculatrices
HP 48
TI 92
 
 Gratuit du Net
A Gratuit
Comparatifs
Se divertir
 
 Aide Webmasters
Trucs & Astuces
JavaScript
 
 Site
Partenaires
Contact
 
 Powered by
linux
 

Initiation


Initiation au HTML



9. Les Listes

    9.1 Les listes avec numérotation : (<OL> </OL>)

        Etiquette d'ouverture d'un élément est <LI> (pas besoin de fermeture)
    1. Moi
    2. Toi
    3. Nous
            <OL>
    <LI>Moi
    <LI>Toi
    <LI>Nous
    </OL>

    9.2 Les listes sans numérotation : (<UL> </UL>)

        Etiquette d'ouverture d'un élément est <LI> (pas besoin de fermeture)
    • Moi
    • Toi
    • Nous
            <UL>
    <LI>Moi
    <LI>Toi
    <LI>Nous
    </UL>

    9.3 Les listes imbriquées :

    • Leçon 1
    • Leçon 2
      • Chapitre 1
      • Chapitre 2
        • Paragraphe 1
        • Paragraphe 2
      • Chapitre 3
    • Leçon 3
             <UL>
    <LI>Leçon 1
    <LI>Leçon 2
    <UL>
    <LI>Chapitre 1
    <LI>Chapitre 2
    <UL>
    <LI>Paragraphe 1
    <LI>Paragraphe 2
    </UL>
    <LI>Chapitre 3
    </UL>
    <LI>Leçon 3
    </UL>
    Remarque :
    En ajoutant l'attribut TYPE=Circle/square/disc on choisit le dessin qui commence la ligne.

    9.4 Les listes avec définitions : (<DL> </DL>)

    Mosaic
    Le premier navigateur
    Netscape Navigator
    Le Meilleur
    Internet Explorer
    Microsoft a la recherche un marché perdu
             <DL>
    <DT>Mosaic
    <DD>Le premier navigateur
    <DT>Netscape Navigator
    <DD>Le Meilleur
    <DT>Internet Explorer
    <DD>Microsoft a la recherche un marché perdu
    </DL>



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