-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeteo.html
95 lines (83 loc) · 2.64 KB
/
meteo.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="./css/meteo.css" rel="stylesheet">
<title>Station Meteo</title>
</head>
<body>
<header>
<h1><strong>Bienvenue dans la station météo de la promo</strong></h1>
</header>
<nav>
<ul>
<li><a href="#" id="menu-derniere">Dernière mesure</a></li>
<li><a href="#" id="menu-top">Top mesures</a></li>
<li><a href="#" id="menu-tableau">Tableaux des mesures</a></li>
<li><a href="#" id="menu-graph">Graphiques des mesures</a></li>
</ul>
</nav>
<main id="main-elt">
<!-- <div id='derniere'>
<p>Dernière mesure du </p>
<br>
<p>Température: </p>
<p>Humidité: </p>
<p>Pression: </p>
</div> -->
<!--
<div id='top'>
<div id='top-hum'>
<p>Top humidité le </p>
<br>
<p>Température: </p>
<p>Humidité: </p>
<p>Pression: </p>
</div>
<div id='top-temp'>
<p>Top température le </p>
<br>
<p>Température: </p>
<p>Humidité: </p>
<p>Pression: </p>
</div>
<div id='top-press'>
<p>Top Pression le </p>
<br>
<p>Température: </p>
<p>Humidité: </p>
<p>Pression: </p>
</div>
</div> -->
<!-- <div id = "tableau">
<table id="table">
<thead>
<tr>
<th scope="col">Date</th>
<th scope="col">Température (T°)</th>
<th scope="col">Humidité (%hum)</th>
<th scope="col">Pression (hPa)</th>
</tr>
</thead>
<tbody id="body">
<tr>
<td>23/10/2019 14:34:14</td>
<td>22.3</td>
<td>61.99</td>
<td>1002.62</td>
</tr>
<tr>
<td>23/10/2019 14:34:14</td>
<td>22.3</td>
<td>61.99</td>
<td>1002.62</td>
</tr>
</tbody>
</table>
</div> -->
</main>
</body>
<script src="./js/meteo.js"></script>
</html>