-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (34 loc) · 1.47 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 lang="en">
<head>
<meta charset="utf-8">
<title>Earthquakes-last 7 days</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<!-- Leaflet CSS & JS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!--D3 cdn-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.5.0/d3.min.js"></script>
<!-- Our CSS -->
<link rel="stylesheet" type="text/css" href="static/css/style.css">
</head>
<body>
<div class="container-fluid">
<div class="jumbotron text-center">
<h1>Earthquake Data Dashboard</h1>
<p>The data below represents earthquakes in the last seven days that is updated every day from the
<a href="https://earthquake.usgs.gov/" target="_blank">United States Geological Survey (USGS)</a>
using Leaflet to plot the data. The darker and larger the circle the greater the magnitude of the earhtquake.
</p>
</div>
</div>
<!-- The div for the map -->
<div class="col-md-1"> </div>
<div class="col-md-10" id="map"></div>
<div class="col-md-1"> </div>
<!-- Our JS -->
<script type="text/javascript" src="static/js/logic.js"></script>
</div>
</body
</html>