forked from nathanallen/geoquakes
-
Notifications
You must be signed in to change notification settings - Fork 67
/
index.html
40 lines (34 loc) · 1.21 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
<!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=AIzaSyBHLett8djBo62dDXj0EjCimF8Rd6E8cxg"></script>
<!-- Custom JS -->
<script src="scripts/app.js"></script>
<title>Quake Watch</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-6">
<div id="map"></div>
</div>
<div class="col-xs-12 col-md-6">
<div id="info">
<h1>Earthquakes from the past week:</h1>
<!-- <p>M 4.2 - 1km ESE of Fontana, California / 123 hours ago </p> -->
</div>
</div>
</div>
</div>
</body>
</html>