NAritaya
1 janv. 2008 à 10:26
Exemple :
Exemple de bouton classique, d'une zone de texte et d'une zone de mot de passe :
<input type="button" value="Bouton">
Zone de texte : <input type="text" value="Champ texte"> Mot de passe : <input type="password" value="password" maxlength="10">
Zone de texte :
Mot de passe :
Exemple d'utilisation des checkbox et boutons radio :
<input type="checkbox" value="Choix 1">Choix 1
<input type="checkbox" value="Choix 2">Choix 2
<input type="checkbox" value="Choix 3" disabled>Choix 3
<input type="radio" name="ExRadio" value="Choix 1">Choix 1
<input type="radio" name="ExRadio" value="Choix 2">Choix 2
Choix 1 Choix 2 Choix 3
Choix 1 Choix 2