Valid XHTML 1.0 Strict
Apprendre le XHTML > Formulaire Xhtml > Balise TEXTAREA

La balise <textarea>

La balise <textarea> définit une champ de texte multiple d'une page web xhtml (balise de type EN LIGNE). La balise <label> possède un attribut for qui fait référence à l'attribut id d'un champ de formulaire. Cela permet ainsi d'associer la balise <label> avec le champ auquel elle correspond.

Utilisation de la balise <textarea>

<form action="">
     <fieldset>
          <legend>Informations sur vous</legend>
          <label for="description">Description</label> : <br />
          <textarea rows="10" cols="10" name="maDescription" id="description"></textarea>
     </fieldset>
</form>


affichera :

Informations sur vous :

2024 © Fabien Branchut