Séance 2 - S1 - BUT MMI
Images

Tableaux

Listes

Formulaires

Quelques ressources
Page complète


Last updated
Was this helpful?






Last updated
Was this helpful?
Was this helpful?
<figure>
<img src="image.png" alt="Description de l'image">
<figcaption>Fig.1 Légende de l'image</figcaption>
</figure>
<!--
on peut utiliser longdesc pour apporter une description plus longue de l'image
l'alternative "alt" est obligatoire, même si elle est vide pour les images décoratives.
--><table>
<caption>Légende de mon tableau</caption>
<thead>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th></th>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th></th>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th></th>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="3"></th>
<th</th>
</tr>
</tfoot>
</table><dl>
<dt>Processeur</dt>
<dd>Intel i7</dd>
<dt>Mémoire Ram</dt>
<dd>16Go</dd>
<dt>Carte Graphique</dt>
<dd>Radeon xxxx</dd>
</dl><form action="/action_page.php" method="post">
<fieldset>
<legend>Votre identité</legend>
<label for="fname">Prénom :</label><br>
<input type="text" id="fname" name="fname" value="John"><br>
<label for="lname">Nom :</label><br>
<input type="text" id="lname" name="lname" value="Doe"><br>
<label for="datenaissance">Date de naissance :</label><br>
<input type="date" id="datenaissance" name="datenaissance"><br>
</fieldset>
<fieldset>
<legend>Votre Adresse</legend>
<label for="numero">N° :</label><br>
<input type="text" id="numero" name="numero"><br>
<label for="rue">Rue :</label><br>
<input type="text" id="rue" name="rue"><br>
<label for="codepostal">Code postal :</label><br>
<input type="integer" id="codepostal" name="codepostal"><br>
<label for="ville">Ville :</label><br>
<input type="text" id="ville" name="ville"><br>
</fieldset>
<input type="submit" value="Submit">
</form>