-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 877 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/apple/237/world-map_1f5fa.png">
<link rel="stylesheet" type="text/css" href="frontend/css/style.css">
<script src="https://api.mapbox.com/mapbox-gl-js/v1.8.0/mapbox-gl.js"></script>
<link href="https://api.mapbox.com/mapbox-gl-js/v1.8.0/mapbox-gl.css" rel="stylesheet"/>
<title>Corona Map</title>
</head>
<body>
<div id="map"></div>
<div class="wrapper">
<div id="stats" class="container">
Loading ...
</div>
</div>
<script src="frontend/emergencyData.js"></script>
<script src="frontend/data.js"></script>
<script src="frontend/script.js"></script>
</body>
</html>