coding.exercices/HTML exercices/mutualite.html

51 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Mutualité</title>
</head>
<body>
<form method="post" action=".">
<label for="champ1">Nom</label>
<input id="champ1" name="nom" type="text" required placeholder="Votre nom"> <br>
<label for="champ2">Nombre d'enfants</label>
<select id="nombre enfants" name="nombre enfants" required aria-placeholder="nombre d'enfants">
<option value="1" selected>1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select> <br>
<label for="champ3">Rue</label>
<input id="champ3" name="Rue" type="text"> <br>
<label for="champ4">Numéro de maison</label>
<input id="champ4" name="Numéro de maison" type="number"> <br>
<label for="champ5">Indication de la boîte/appartement</label>
<input id="champ5" name="Indication de la boîte/appartement" type="text"> <br>
<label for="champ6">le code postal</label>
<input id="champ6" name="le code postal" type="number"> <br>
<label for="champ7">la localité</label>
<input id="champ7" name="la localité" type="text"> <br>
<label for="champ8">la province de Belgique</label>
<input id="champ8" name="la province de Belgique" type="text"> <br>
<label for="champ9">la description de la situation familiale</label>
<textarea id="champ9" cols="40" rows="3"></textarea><br>
<label for="champ10">le livret de famille</label>
<input id="champ10" type="file" name="le livret de famille" accept=".pdf, .docx"><br>
<input type="button" value="Aide"><br>
<input type="submit" name="Soumettre" value="Soumettre le formulaire">
</form>
</body>