-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 843 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 843 Bytes
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
<!doctype html>
<html>
<head>
<title>Earthquake tracker</title>
<meta charset='UTF-8' />
<link href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css' rel='stylesheet' type='text/css' />
<link href='style.css' rel='stylesheet' type='text/css' />
</head>
<body>
<h1>West Coast Earthquake Data (Live Feed) </h1>
<div class = "container-fluid" >
<div class = "row">
<div class = "col-md-2"></div>
<div class = "col-md-8" id = 'map'></div>
<div class = "col-md-2"><div>
</div>
</div>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
<script src='script.js'></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAr5lF6teDp_L2fQUEG4hbOccWeDGblPdE&callback=initMap">
</script>
</body>
</html>