-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 2.19 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>Sensor Demo</title>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<meta name="viewport" content="initial-scale=1">
<script src="https://cdn.anychart.com/releases/v8/js/graphics.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<h1 align="center">Sensor Data</h1>
<div id="houses" class="houses">
<figure>
<p text-align="left"><img id="house1" class="house" src="img/house_icon.png" alt="household"></img></p>
<figcaption class="dynamic-size-text">
<h4>Sensor 1</h4>
<p id="gas1">Gas level: loading...</p>
<p id="time1">Time: loading...</p>
</figcaption>
</figure>
<figure>
<p text-align="center"><img id="house2" class="house" src="img/house_icon.png" alt="household"></img></p>
<figcaption class="dynamic-size-text">
<h4>Sensor 2</h4>
<p id="gas2">Gas level: loading...</p>
<p id="time2">Time: loading...</p>
</figcaption>
</figure>
<figure>
<p text-align="right"><img id="house3" class="house" src="img/house_icon.png" alt="household"></img></p>
<figcaption class="dynamic-size-text">
<h4>Sensor 3</h4>
<p id="gas3">Gas level: loading...</p>
<p id="time3">Time: loading...</p>
</figcaption>
</figure>
</div>
<br>
<div id="stage-container" style="width: 2120px; height: 350px;"></div>
<img src="img/grass.png" style="width: 120%; height: 140%; margin-bottom: -30%; margin-left: -10%;">
<script src="main.js"></script>
</body>
</html>