-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<title>Graduate Salaries of the Top 30 U.S. Universities</title>
<link rel="stylesheet" href="styles.css">
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/d3.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/topojson.min.js"></script>
<script src="https://unpkg.com/[email protected]/us/10m.json"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-legend/2.13.0/d3-legend.js"></script>
</head>
<body>
<h2>No Pain, No Gain - Graduate Salaries of the Top 30 U.S. Universities</br></br></h2>
<div>
<h4> Distribution of the Top 30 U.S. Universities</h4>
<input type="checkbox" class="checkbox" value="Private" checked> Private Universities
<input type="checkbox" class="checkbox" value="Public" checked> Public Universities
</div>
<div id="svg1"></div>
<label><input type="sort"> Sort values</label>
<h4></br></br>Percentile Chart of the Graduate Salaries</h4>
<div id="svg2"></div>
<script src="bundle.js"></script>
</body>
</html>