-
Notifications
You must be signed in to change notification settings - Fork 0
/
Modification_ds_informations_du_client.htm
70 lines (69 loc) · 1.98 KB
/
Modification_ds_informations_du_client.htm
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="fr">
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
<meta charset="UTF-8" >
<title>Mon formulaire</title>
<style>
table, th, td {
border: 3px solid black;
width: 400px;
}
</style>
</head>
<body>
<h1> Cascading Style Sheets </h1>
<h2> Le premier titre 2 </h2>
<h2> Le deuxième titre 2 </h2>
<h2 style="font-family:Comic sans MS;color:blue;"> Le troisième titre 2 </h2>
<h1> Le formulaire </h1><br>
<form action="mon_formulaire.htm" method="get" id="monFormulaire">
<table>
<tr>
<th>Civilité :</th>
<td>
<input type="radio" name="civ" value="0" checked>Mr
<input type="radio" name="civ" value="1" >Mme
</td>
</tr>
<tr>
<th>Nom :</th>
<td><input type="text" name="Nom" placeholder="Nom" size="28" maxlength="30" ></td>
</tr>
<tr>
<th>Prénom :</th>
<td><input type="text" name="Prenom" placeholder="Prenom" size="28" maxlength="30" ></td>
</tr>
<tr>
<th>Adresse :</th>
<td><input type="text" name="adresse1" placeholder="Adresse 1" size="28" maxlength="40" ></td>
</tr>
<tr>
<th></th>
<td><input type="text" name="adresse2" placeholder="Adresse 2" size="28" maxlength="40" ></td>
</tr>
<tr>
<th>Code Postal :</th>
<td><input type="text" name="cp" size="28" maxlength="5" ></td>
</tr>
<tr>
<th>Ville :</th>
<td><input type="text" name="ville" placeholder="Ville" size="28" maxlength="30" ></td>
</tr>
<tr>
<th>Département :</th>
<td>
<select name="dep" size="1" >
<option value="0" selected>Choisir</option>
<option value="31">Haute-Garonne</option>
<option value="09">Ariège</option>
</select>
</td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Envoyer" ></td>
</tr>
</table>
</form>
</body>
</html>