1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| <form action="" method="post">
<table>
<tbody>
<tr>
<td>
<label for="categorie">Le type de contact</label>
<select name="categorie" size="1">
<option selected="selected">Particulier</option>
<option>Entreprise</option>
</select>
</td>
</tr>
<tr>
<td>
<label for="objet">Nom du contact</label>
<br />
<input id="object" type="text" required="required" placeholder="Entrer le nom du contact" autofocus="autofocus" />
</td>
</tr>
<tr>
<td>
<label for="objet">Prénom du contact (si Particulier)</label>
<br />
<input id="object" type="text" required="" placeholder="Entrer le prenom du contact" />
</td>
</tr>
<tr>
<td>
<label for="object">Numéro du contact</label>
<br />
<input id="object" type="tel" required="required" placeholder="Entrer le numero du contact" />
</td>
</tr>
<tr>
<td>
<label for="object">Mail du contact</label>
<br />
<input id="object" type="email" required="required" placeholder="Entrer le mail du contact" />
</td>
</tr>
</tbody>
</table>
<input id="envoyer" type="submit" value="Envoyer" />
</form> |
Partager