-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
49 lines (43 loc) · 1.04 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Clock</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
<script src="js/prototype.js" type="text/javascript"></script>
<script src="js/clock.js" type="text/javascript"></script>
</head>
<body>
<div id="date"></div>
<div id="topRow">
<div id="clock">
<span id="hour"></span>
<span id="minute"></span>
</div>
<div id="weather">
<div id="weatherIcon"></div>
<div id="todayData">
<div id="temp"></div>
<div id="humidity"></div>
</div>
</div>
</div>
<div id="forecast"></div>
<div id="forecastTemplate">
<div id="forecast#{idx}">
<div class="hour">#{hour}</div>
<div class="icon"></div>
<div class="temp">#{temp}°</div>
<div class="humidity">#{humidity}%</div>
</div>
</div>
<div id="nowPlaying" style="display: none">
<div id="coverArt"></div>
<div id="mediaInfo">
<div id="artist"></div>
<div id="title"></div>
<div id="album"></div>
</div>
</div>
</body>
</html>