forked from dataviz-sp18/fp-beau-harrison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 830 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
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Data Visualization - Interactivity</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<div id="senatorSimilarity">
<div id="senatorForm">
<label for="senatorSelect">Select a Senator:</label>
<select id="senatorSelect" name="senatorSelect" class="selectpicker" data-live-search="true" style="text-transform:none"
title="Choose a senator"></select>
</div>
<div id="similarity"></div>
</div>
</main>
<script src="external/d3v4jetpack.js"></script>
<script src="generateHtml.js"></script>
<script src="similarities.js"></script>
</body>
</html>