-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6page6.html
executable file
·55 lines (26 loc) · 980 Bytes
/
6page6.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
<!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">Quelle est la nature de la pollution ? </p>
<form action="traitement.php" method="post">
<a href="11page11.html">
<img src="picto/poussiere.png" class="picto">
<input type="button" name="nature_pollution" value="Poussières" class="air"></input>
</a>
<a href="11page11.html">
<img src="picto/vapeur.png" class="picto">
<input type="button" name="nature_pollution" value="Fumées ou vapeurs" class="air"></input>
</a>
</form>
</div>
</body>
</html>