-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtree.html
More file actions
40 lines (40 loc) · 1.66 KB
/
tree.html
File metadata and controls
40 lines (40 loc) · 1.66 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>2018 In Music</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="https://unpkg.com/d3@5.6.0/dist/d3.min.js"></script>
<script src='https://rawgit.com/susielu/d3-annotation/master/d3-annotation.min.js'></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<nav id='navbar-placeholder' class='fixed-top'></nav>
<div class='container-fluid'>
<div class='row'>
<div class='col-lg-8 p-0' id='tree'>
<svg class='tree' style="margin-top: 60"></svg>
</div>
<div class='col-lg-4 d-none d-md-block p-0' id='stacked-area-artist-vertical'>
<svg class='stacked-area-artist-svg' style="margin-top: 54"></svg>
</div>
</div>
</div>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> -->
<script>
$(function(){
$("#navbar-placeholder").load("navbar.html");
});
</script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="treebundle.js"></script>
</body>
</html>