-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (23 loc) · 1002 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
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="60">
<title>Real Time Energy Monitor</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<link rel="apple-touch-icon" sizes="57x57" href="apple-touch-icon-lightning.png" />
</head>
<body>
<div class="container">
<h1>Real Time Energy Monitor</h1>
<h4>Time of recording: <div id = "Time"></div></h4>
<h4>Temperature °F: <div id = "Temp"></div></h4>
<h4>Current Power Usage (in Watts): <div id = "Power"></div></h4>
</div>
<script src="RTEMonitor.js"></script>
</body>
</html>