-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.29 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css" />
<title>IEQ Meter</title>
</head>
<body>
<div class="main-container">
<h1>IEQ METER</h1>
<p>Hit Refresh Button to see live data . . .</p>
<div class="data-card-container">
<div class="card">
<label for="Temperature">Temperature</label>
<p id="temp-data">0</p>
</div>
<div class="card">
<label for="Humidity">Humidity</label>
<p id="humi-data">0</p>
</div>
<div class="card">
<label for="HeatIndex">HeatIndex</label>
<p id="heatindex-data">0</p>
</div>
</div>
<button onclick="getData()">
Refresh
</button>
</div>
<footer>
<p>
An "Open Source" Project <br />
Find Source Code <br />
<a
href="https://github.com/Singh-Vikas-M/Particle-IEQ-Meter"
target="_blank"
>HERE</a
>
</p>
</footer>
<script src="./app.js"></script>
</body>
</html>