-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (68 loc) · 3.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>GrowBoxApp</title>
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+SC&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Cabin&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/turn.css">
</head>
<body>
<div class="container">
<div class="main">
<div class="header">
<p class="date">
<script src="js/date.js"></script>
</p>
<p class="step">Flowering</p>
</div>
<div class="logo">
<img class="lg" src="img/logo" alt="logo">
</div>
</div>
<div class="dashBoard">
<div class="dashBody">
<div class="temp1">
<p class="textDash">Температура воздуха</p>
<p class="value">26°C</p>
</div>
<div class="humid1">
<p class="textDash">Влажность воздуха</p>
<p class="value">76%</p>
</div>
<div class="humid2">
<p class="textDash">Влажность грунта</p>
<p class="value">89%</p>
</div>
<div class="light">
<p class="textDash">Освещение</p>
<p class="value">12/12</p>
</div>
<div class="fan">
<p class="textDash">Вентилятор</p>
<p class="value">ВКЛ</p>
</div>
<div class="fan">
<p class="textDash">Обогреватель</p>
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="myonoffswitch" checked>
<label class="onoffswitch-label" for="myonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</div>
</div>
</div>
</div>
<div class="copyright">
<p>GrowBox v1.0 by Gans</p>
<script type="text/javascript">
document.write(new Date().getFullYear());
</script>
</div>
</body>
</html>