-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 915 Bytes
/
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset=utf-8>
<meta name=viewport content='width=device-width, initial-scale=1, maximum-scale=1'>
<title>Electricity Meter</title>
<link rel=stylesheet href=electricityd.css>
<link rel='shortcut icon' href=lightning.ico />
<script src=//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js></script>
<script src=electricityd.js></script>
</head>
<body>
<div id=error></div>
Energy Now <label><span id=watts class=reading> </span> Watt</label><hr>
Time <label><span id=time class=reading> : : </span></label><hr>
Temp <label><span id=temp class=reading> . </span>°C</label><hr>
RH <label><span id=humid class=reading> . </span>%</label><hr>
<div id=charts>
<div id=chart_h></div><hr>
<div id=chart_d></div><hr>
<div id=chart_m></div>
</div>
<div id=log></div>
</body>
</html>