-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 954 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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>US Gun Map</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="https://d3js.org/d3-queue.v2.min.js"></script>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="mapTitle">An Interactive Exploration Into American Gun Data
</div>
<div id="map"></div>
<div id="mapType">
<ul id="nav">
<li id="incidents" class="active">Mass Shooting Incidents since 1982</li>
<li id="deaths">Gun Deaths from Newtown (December 14, 2012) to December 31, 2013</li>
<li id="policeshootings">Fatal Police Shootings since 2000</li>
</ul>
</div>
<script type="text/javascript" src="map.js"></script>
</body>
</html>