forked from SF-WDI-LABS/geoquakes
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (40 loc) · 1.39 KB
/
index.html
File metadata and controls
50 lines (40 loc) · 1.39 KB
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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- set viewport to device width to allow responsiveness -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="styles/styles.css">
<!-- jQuery -->
<script src="http://code.jquery.com/jquery-3.2.1.min.js"></script>
<!-- Google Maps API -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBmK3eWCI9R6rI31fLCARImWUV2xqd5gWM"></script>
<script type="text/javascript" src="scripts/markerclusterer.js"></script>
<!-- Custom JS -->
<script src="scripts/app.js"></script>
<title>Quake Watch</title>
</head>
<body>
<h1>Quake Watch</h1>
<br>
<div class="container">
<div class="row">
<div class="col-md-6">
<div id="map"></div>
<script>initMap()</script>
</div>
<br>
<div class="col-md-6">
<div id="info">
<h1>2.5+ Magnitude Earthquakes from the past week</h1>
<!-- <p>M 4.2 - 1km ESE of Fontana, California / 123 hours ago </p> -->
<br>
</div>
</div>
</div>
</div>
</body>
</html>