Aide mémoire

HTML

Balise HTML : <élément_html attribut="valeur">

<!-- Commentaire -->

  1. Prologue
    • <!DOCTYPE html>
  2. En-tête
    • <head> </head>
    • <meta name="author" content="Jean Dupont" />
    • <meta name="Keywords" content="mot1, mot2" />
    • <meta name="Description" content="texte" />
    • <title> </title>
    • <link rel="stylesheet" type="text/css" href="./styles/style.css" />
  3. Corps
    1. Balises générales
      • <body> </body>
      • <p> </p>
      • <h1> </h1> à <h6> </h6>
      • <br />
      • <hr />
      • <em> </em>, <strong> </strong>
      • <span> </span>
      • <div> </div>
    2. Sémantiques
      • <header> </header>
      • <nav> </nav>
      • <section> </section>
      • <article> </article>
      • <aside> </aside>
      • <footer> </footer>
    3. Listes
      • <ol> <li> </li> </ol>
      • <ul> <li> </li> </ul>
      • <dl> <dt> </dt> <dd> </dd> </dl>
    4. Tables
      • <table> </table>
      • <caption> </caption>
      • <tr> </tr>
      • <th> </th>
      • <td> </td>
    5. Images
      • <img src="./images/image.jpg" alt="commentaire obligatoire" />
    6. Liens et ancres
      • <a href="http://www.iut-blagnac.fr/"> </a>
      • <balise id="toto"> </balise>, <a id="toto" />
      • <a href="#toto"> </a>
    7. Attributs communs à toutes les balises
      • style
      • class
      • id