-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsmart_mirror.html
46 lines (46 loc) · 1.2 KB
/
smart_mirror.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
<html>
<header>
<title>Smart Mirror</title>
<script src="smart_config.js"></script>
<script src="smart_mirror.js"></script>
<link rel="stylesheet" type="text/css"
href="http://fonts.googleapis.com/css?family=Ubuntu:regular,bold&subset=Latin,Cyrillic">
<link href="smart_mirror.css" rel="stylesheet">
</header>
<body onload="initialize()">
<div class="container_time" id="container_time" style="width: 500px">
<div id="time" class="time elem">time</div>
<div id="date" class="date elem">date</div>
</div>
<div class="container_music">
<table class="bottom">
<tr id="container_music">
<td><img src="img/speaker.png" ></td>
<td>
<div id="song">song</div>
<div id="artist">artist</div>
</td>
</tr>
<tr>
<td><img src="img/sun_power.png" ></td>
<td>
<div id="sun_power">- kWh</div>
</td>
</tr>
</table>
</div>
<div class="container_switches" id="container_switches">switches</div>
<div class="container_weather" id="container_weather">
<table>
<tr>
<td>
<div id="temperature" class="weather elem">temperature</div>
</td>
<td>
<div id="weather_img" class="weather elem">wether_img</div>
</td>
</tr>
</table>
</div>
</body>
</html>