HTML
Balise HTML : <élément_html attribut="valeur">
<!-- Commentaire -->
- Prologue
- 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" />
- Corps
- Balises générales
- <body> </body>
- <p> </p>
- <h1> </h1> à <h6> </h6>
- <br />
- <hr />
- <em> </em>, <strong> </strong>
- <span> </span>
- <div> </div>
- Sémantiques
- <header> </header>
- <nav> </nav>
- <section> </section>
- <article> </article>
- <aside> </aside>
- <footer> </footer>
- Listes
- <ol> <li> </li> </ol>
- <ul> <li> </li> </ul>
- <dl> <dt> </dt> <dd> </dd> </dl>
- Tables
- <table> </table>
- <caption> </caption>
- <tr> </tr>
- <th> </th>
- <td> </td>
- Images
- <img src="./images/image.jpg" alt="commentaire obligatoire" />
- Liens et ancres
- <a href="http://www.iut-blagnac.fr/"> </a>
- <balise id="toto"> </balise>, <a id="toto" />
- <a href="#toto"> </a>
- Attributs communs à toutes les balises