-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·45 lines (35 loc) · 1.22 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
42
43
44
45
<!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/style.css">
<title>Quake Watch by BL</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>
<div class="spacer">
</div>
<footer> Made by BL for GA. </footer>
<!-- 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>
</body>
</html>