-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·26 lines (26 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- d3 JavaScript -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<link rel="stylesheet" type="text/css" href="Earthquake_Challenge/static/css/styles.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<title>Leaflet Map</title>
</head>
<body>
<div id="mapid"></div>
<!-- API key -->
<script type="text/javascript" src="Earthquake_Challenge/static/js/config.js"></script>
<!-- Our JavaScript -->
<script type="text/javascript" src="Earthquake_Challenge/static/js/cities.js"></script>
<script type="text/javascript" src="Earthquake_Challenge/static/js/challenge_logic.js"></script>
</body>
</html>