Edit in JSFiddle

<!DOCTYPE html>

<html> 
 <head>
  <title>Exemple de HTML</title>
 </head>
 <body>
 <h1>Présentation d'un formulaire</h1>
 <!-- Nous allons commencer à insérer le tableau par la balise <table> -->
 <form action="cible.php" method="POST">
      <label> - Nom: </label><input type="text" name="nom"/>
			<label> - Sexe</label>
			 <select name="sexe">
			         <option value="Homme">Homme</option>
			         <option value="Femme">Femme</option>
			</select>
<br/>
			<label> - Age</label>
			 <select name="age">
			  <option value="Age inférieur à 18 ans">Age inférieur à 18 ans</option>
			  <option value="Age supérieur à 18 ans">Age supérieur à 18 ans </option>
			  <option value="Age supérieur à 50 ans">Age supérieur à 50 ans</option>
			</select>
      <br/>
      <p><label>Etes-vous végétarien ? <input type="checkbox" name="vegetarien"</p>
			<p><input type="submit" /></p>
		</form>
   </body>
</html>