-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (66 loc) · 2.2 KB
/
index.html
File metadata and controls
70 lines (66 loc) · 2.2 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>HotHotHot</title>
<script src="./JS/script.js"></script>
<link rel="stylesheet" href="./CSS/stylesheet.css"></link>
<meta charset="utf-8"/>
<link rel="apple-touch-icon" sizes="180x180" href="./image/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./image/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./image/favicon-16x16.png">
<link rel="mask-icon" href="./image/safari-pinned-tab.svg" color="#ff7ce3">
<meta name="msapplication-TileColor" content="#ffc3f2">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="./manifest.webmanifest">
</head>
<body>
<div class="navbarre" id="barre">
<a class="active" href="./index.html" id="self">Page Principale</a>
<a href="./documentation.html" id="doc">Documentation</a>
<a href="./login.html" id="login">Mon Compte</a>
</div>
</br>
<div id="onglet">
<a href="#" data="0" id="temp">Température actuelle</a>
<a href="#" data="1" id="histo">Historique</a>
</div>
</br>
<div id="température">
<div id="statut"></div>
<div id="datas">
<div id="interieur">
<p id="pinterieur"></p>
<p id="alertint"></p>
</div>
<div id="exterieur">
<p id="pexterieur"></p>
<p id="alertext"></p>
</div>
</div>
</div>
<div id="Historique">
<div id=inte>
<p> </p>
</div>
<table id="minmax">
<tr><td rowspan="2">Interieur</td><td>Min</td><td>???1 °C</td></tr>
<tr><td>Max</td><td>???2 °C</td></tr>
<tr><td rowspan="2">Exterieur</td><td>Min</td><td>???3 °C</td></tr>
<tr><td>Max</td><td>???4 °C</td></tr>
</table>
<div id="exte">
<canvas>
<p>salut</p>
</canvas>
</div>
<table id="int">
<tr><th colspan="3">Interieur</td></tr>
<tr><td>Type</td><td>Valeur</td><td>Timestamp</td></tr>
</table>
<table id="ext">
<tr><th colspan="3">Exterieur</td></tr>
<tr><td>Type</td><td>Valeur</td><td>Timestamp</td></tr>
</table>
</div>
</body>
</html>