forked from dionyziz/beautiful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<title>Making Javascript Beautiful</title>
<style>
body {
margin: 0;
font-family: "Trebuchet MS", Verdana, sans-serif;
text-align: center;
font-size: 90%;
background-color: #333333;
}
h1 {
font-size: 100%;
margin: 10px;
color: white;
}
h2 {
font-size: 110%;
color: #999;
margin: 0;
}
canvas {
margin: auto;
display: block;
cursor: pointer;
}
a {
color: dodgerblue;
}
</style>
</head>
<body>
<h1>Phone market share</h1>
<h2>Jun 2007 - Jan 2012</h2>
<canvas id='canvas' width='600' height='600'></canvas>
<strong><a href=''>Click for market breakdown</a></strong>
<script src='https://code.jquery.com/jquery-1.8.2.min.js'></script>
<script src='js/network.js'></script>
<script src='js/json2.js'></script>
<script src='js/date.js'></script>
<script src='js/graph.js'></script>
<script src='js/color.js'></script>
<script src='js/draw/draw.js'></script>
<script src='js/draw/axes.js'></script>
<script src='js/process.js'></script>
<script src='js/lagrange.js'></script>
<script src='js/loader.js'></script>
</body>
</html>