index.html
886 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Page Title</title>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<h1>Station météo en ligne</h1>
<h2>Gracias-Havard-Qiang-Knockaert</h2>
<h3>Connection <span class="connecOn">On</span>/<span class="connecOff">Off</span></h3>
<h3>Météo</h3>
<div id="apercuGeneral">
<div class="soleil"></div>
<div class="nuageux"></div>
<div class="pluie"></div>
</div>
<div id="relevesMeteo">
<button onclick="requeteEnvoi();">Récupérer donnée</button>
<table>
<tr>
<th>Température</th>
<th>Humidité</th>
<th>Pression</th>
<th>Luminosité</th>
</tr>
<tr>
<td class="temperature"></td>
<td class="humidite"></td>
<td class="pression"></td>
<td class="luminosite"></td>
</tr>
</table>
</div>
</body>
</html>