-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (27 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>Colour clock</title>
<script src="jquery-1.10.2.js"></script>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
</head>
<body>
<article>
<div id="time" class="box"></div>
<div id="color" class="box"></div>
<div id="colorMap">
<div class="colorComponent colorMapR"></div>
<div class="colorComponent colorMapG"></div>
<div class="colorComponent colorMapB"></div>
</div>
<div id="gradient"></div>
</article>
<script src="/assets/js/Dom.js"></script>
<script src="/assets/js/Clock.js"></script>
<script src="/assets/js/ColorCalculator.js"></script>
<script src="/assets/js/Beeper.js"></script>
<script src="/assets/js/main.js"></script>
</body>
</html>