43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="http://www.iut-fbleau.fr/css/tacit.css">
|
|
<link rel="stylesheet" href="./css/style.css">
|
|
<title>Exercice 1</title>
|
|
|
|
</head>
|
|
<body container>
|
|
<div grid>
|
|
<div column="8 +2">
|
|
<h3> Exercice 1</h3>
|
|
<form action="ex1.php" method="POST">
|
|
<fieldset>
|
|
<legend>Qui êtes-vous ?</legend>
|
|
<!-- Text input-->
|
|
<label>Nom<br>
|
|
<input name="nom" placeholder="nom" type="text">
|
|
</label>
|
|
<!-- Text input-->
|
|
<label >Prénom<br>
|
|
<input name="prenom" placeholder="prénom" type="text">
|
|
</label>
|
|
<!-- Multiple Radios -->
|
|
<label class="control-label" for="radios">Sexe</label>
|
|
<label>
|
|
<input name="sexe" value="Homme" checked="checked" type="radio">
|
|
Homme
|
|
</label>
|
|
<label >
|
|
<input name="sexe" value="Femme" type="radio">
|
|
Femme
|
|
</label>
|
|
<!-- Button -->
|
|
<button type="submit">Envoyer</button>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|