-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathindex.html
26 lines (23 loc) · 896 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Quake Watch</title>
<!-- CSS -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
<!-- VENDOR JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBHLett8djBo62dDXj0EjCimF8Rd6E8cxg"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore.js"></script>
<!-- APPLICATION JS -->
<script src="base.js"></script>
</head>
<body>
<div id="map" class="column"></div>
<div id="info" class="column">
<h1>Earthquakes from the past week:</h1>
<!-- <p>M 4.2 - 1km ESE of Fontana, California / 123 hours ago </p> -->
</div>
</body>
</html>