-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4page4.html
executable file
·59 lines (31 loc) · 1.12 KB
/
4page4.html
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
<!--ok-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/button.css">
<link rel="stylesheet" href="css/image.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="picto/logo.ico">
<title>SOS Environnement</title>
</head>
<body>
<div class="page choix">
<p class="text">Quel est le milieu impacté ? </p>
<form action="traitement.php" method="post" class="collumn">
<a href="9page9.html">
<img src="picto/3sol.png" class="picto">
<input type="button" name="environement" value="sol" class="sol"></input>
</a>
<a href="5page5.html">
<img src="picto/1air.png" class="picto">
<input type="button" name="environement" value="air" class="air"></input>
</a>
<a href="7page7.html">
<img src="picto/2eau.png" class="picto">
<input type="button" name="environement" value="eau" class="eau"></input>
</a>
</form>
</div>
</body>
</html>