-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.1 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 lang="en">
<head>
<meta charset="utf-8">
<title>Space junk visualization</title>
<link rel="stylesheet" href="app.css">
<script src="bower_components/d3/d3.js"></script>
<script src="bower_components/moment/moment.js"></script>
<script src="app.js"></script>
</head>
<body>
<style>
a:link {
color: white;
}
a:visited {
color: orange;
}
a:hover {
color: yellow;
}
a:active {
color: yellow;
}
</style>
<h1 style="color: white; text-align: center;">A D3 visualization</h1>
<h2 style="color: white; text-align: center; ">From the book <a href="http://bit.ly/2t2cJu2" target="_blank">Data Wrangling with JavaScript</a></h1>
<p style="color: white; text-align: center;"><a href="https://github.com/Data-Wrangling-with-JavaScript/d3-animated-viz" target="_blank">Code is available on GitHub</a></p>
<svg class="chart"></svg>
</body>
</html>