-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (68 loc) · 2.22 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
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
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Smart Home</title>
<link rel="stylesheet" href="normalise.css" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<main>
<section class="sec-one"></section>
<section class="sec-two">
<h2>Temperature</h2>
<span class="temp-value">35.90</span>
<span class="temp"
><img src="images/temperature-186-532268.png" alt=""
/></span>
</section>
<section class="sec-three">
<h2>Alarm status</h2>
<p class="alarm"><img src="images/sound_on.png" alt="" /></p>
</section>
<section class="sec-four">
<h2>Humidity</h2>
<span class="four-value">95.90</span>
<span class="temp temp-four"
><img src="images/images-2.png" alt=""
/></span>
</section>
<section class="sec-five">
<h2>Fire status</h2>
<p class="alarm"><img src="images/fire_on.gif" alt="" /></p>
</section>
<section class="sec-six">
<div class="six-bulb-one">
<p class="on-bulb"><img src="images/ON1.jpeg" alt="" /></p>
<div class="butt">
<button class="on">on</button>
<button class="off">off</button>
</div>
</div>
<div class="six-bulb-two">
<p class="on-bulb"><img src="images/ON1.jpeg" alt="" /></p>
<div class="butt">
<button class="on">on</button>
<button class="off">off</button>
</div>
</div>
<div class="six-fan-one">
<p class="on-bulb-fan"><img src="images/turning.gif" alt="" /></p>
<div class="butt">
<button class="on">on</button>
<button class="off">off</button>
</div>
</div>
<div class="six-fan-two">
<p class="on-bulb-fan"><img src="images/turning.gif" alt="" /></p>
<div class="butt">
<button class="on">on</button>
<button class="off">off</button>
</div>
</div>
</section>
</main>
</body>
</html>