-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfinalproject.html
executable file
·64 lines (44 loc) · 1.46 KB
/
finalproject.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>W209 - Final Project</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- css customize start - Li-->
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- css customize end - Li-->
</head>
<style>
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.area {
fill: steelblue;
}
</style>
<body>
<div class="container">
<div class='col-12'>
<p>
<h1>Game of Thrones: Character Relationship Explorer</h1>
<div id="characterCountPlot"></div>
<div id="network"></div>
<div id="houselegend"></div>
<div id="timeline"></div>
<!-- Content here -->
</div>
<!-- footer start Li-->
<div class='footer' style='margin-right: 50; text-align: center;'>
<div class='col-12'>
<div id='source'>Created by
Boris Garber, Li Chen, and Matt Adereth</div>
<div id='source'>Data Sources: <a href="https://github.com/jeffreylancaster/game-of-thrones/tree/master/data">github.com/jeffreylancaster/game-of-thrones</a>
</div>
</div>
<!-- footer end Li-->
</body>
<script src="d3.v4.min.js"></script>
<script src="finalproject.js"></script>