-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 1.26 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles.css"/>
<script defer src="td1.js"></script>
</head>
<body>
<header>
<h1>TD n°1 Programmation web – Application météo</h1>
</header>
<select id="Ville" name="Ville" onchange="afficheVille()">
<option value="Niort">Niort</option>
<option value="Turku">Turku</option>
<option value="Huijbergen">Huijbergen</option>
</select>
<div id="container-flex">
<div class="weather_city" id="Niort">
<h2>Niort</h2>
<p>12°, pluvieux</p>
<img src="pluvieux.png" />
</div>
<div class="weather_city" id="Turku">
<h2>Turku</h2>
<p>-20°, trop froid</p>
<img src="freezing.png" />
</div>
<div class="weather_city" id="Huijbergen">
<h2>Huijbergen</h2>
<p>5°, festif</p>
<img src="parade.png" />
</div>
</div>
<footer>
<h3>Nono de Gunst</h3>
<p>Icones par : <a href="https://thenounproject.com">the noun project</a></p>
</footer>
</body>
</html>