-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
27 lines (24 loc) · 888 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Degrees of Pynchon</title>
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h1>Degrees of Pynchon</h1>
<h2>“Thomas Pynchon loved this graph, almost as much as he loves cameras!”</h2>
<svg></svg>
<p>
Made with ❤ by <a href="https://github.com/sahiga">Stephanie A. Higa</a> on a trusty old Linux box.
</p>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="./src/writers.js"></script>
<script src="./src/constants.js"></script>
<script src="./src/state.js"></script>
<script src="./src/drawNewArcs.js"></script>
<script src="./src/drawNewCanvas.js"></script>
<script src="./src/index.js"></script>
</body>
</html>