-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="application-name" content="The-Stolen-Map">
<meta name="author" content="WebSnke">
<meta name="description" content="A map highlighting disputed artifacts in museums around the world.">
<meta name="keywords" content="stolen, artifacts, map, leaflet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon"
href="https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Octicons-mark-github.svg/640px-Octicons-mark-github.svg.png">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=" crossorigin="">
<link rel="stylesheet" href="./styles/style.css">
<title>The Stolen Map</title>
</head>
<body>
<div id="map"></div>
<a class="gitHubLink" href="https://github.com/WebSnke/The-Stolen-Map"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Octicons-mark-github.svg/640px-Octicons-mark-github.svg.png"
alt="The Stolen Map on GitHub"></a>
</body>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=" crossorigin=""></script>
<script src="https://cdn.jsdelivr.net/npm/leaflet.geodesic"></script>
<script src="./scripts/index.js" type="module"></script>
</html>