-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
41 lines (38 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<!-- CSS Imports -->
<link rel="stylesheet" href="css/leaflet.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- Map -->
<div id="map" class="map"></div>
<!-- Sidebar -->
<div class="sidebar">
<div id="sidebar_top">
<h2 class="Slide-title">Wealth, <br>Inequality, <br>and <br>Mobility, <br>in <br>American Higher Education</h2>
<p class="Slide-text">by Simon Kassel</p>
</div>
<div id= "sidebar-bottom">
<button class="abutton" id="previous">
Previous
</button>
<button class="abutton" id="next">
Next
</button>
<h3 id="data-attribution">
Data: The Equality of Opportunity Project
</h3>
</div>
</div>
<!-- Javascript Imports -->
<script src="js/leaflet.js"></script>
<script src="js/underscore.js"></script>
<script src="js/jquery-2.2.0.js"></script>
<script src="js/chroma.js"></script>
<script src="js/plotly-latest.min.js"></script>
<script src="js/sidebar_text.js"></script>
<script src="js/main.js"></script>
</body>
</html>