-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.17 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Explore Missouri EG</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet"> <link rel="stylesheet" href="./style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500&display=swap" rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<h1>A Million Maps of Missouri</h1>
<h2>Visualizing the Efficiency Gap</h2>
</header>
<label for="dropdown" class="dropdown">Select an election: </label>
<select id="dropdown" name="dropdown">
<option value="PRES16" selected="PRES16">2016 Presidential</option>
<option value="USSEN16">2016 U.S. Senate</option>
</select>
<div id="dashboard">
<div id="table"> </div>
<div id="boxplot"> </div>
<div id="beeswarm"> </div>
<div id="explainer">
</div>
</div>
<script src="./lib/d3.js"></script>
<script src="./lib/d3-array.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-annotation/1.12.1/d3-annotation.min.js"></script>
<script type="module" src="./index.js"></script>
</body>
</html>