-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=IE8">
<meta name="description" content="Koalas to the Max, a site made with love by Vadim Ogievetsky for Annie Albagli">
<meta name="keywords" content="Clcoks">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="google" content="notranslate">
<title>Clocks</title>
<script type="text/javascript" src="http://d3js.org/d3.v2.js"></script>
<style type="text/css">
body {
background: #333;
margin: 0;
}
svg {
position: absolute;
top: 50%;
left: 50%;
}
circle {
stroke-width: 2;
}
.hour {
stroke-width: 3;
stroke-linecap: round;
}
.minute {
stroke-width: 2;
stroke-linecap: round;
}
</style>
</head>
<body>
<script type="text/javascript" src="clocks.js"></script>
</body>
</html>