map/index.html

30 lines
1.2 KiB
HTML
Raw Normal View History

2025-02-09 19:55:34 +00:00
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Elm app by clp</title>
2025-02-11 05:17:18 +00:00
<link rel="manifest" href="manifest.json" />
2025-02-09 19:55:34 +00:00
<link rel="stylesheet" href="style.css">
2025-02-11 05:17:18 +00:00
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""/>
2025-02-09 19:55:34 +00:00
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
2025-02-11 05:17:18 +00:00
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""></script>
2025-02-09 19:55:34 +00:00
</head>
<body>
<header>
<h1>CLP's map app</h1>
2025-02-09 19:55:34 +00:00
</header>
<main>
<p>This is an app which will either load succesfully, and you'll wonder whether you saw this text at all, or fail ignominiously, showing you only this text.</p>
<p>On balance of probabilities: I'm sorry I couldn't be bothered to make this work for you.</p>
</main>
<footer>Made by <a href="https://somethingorotherwhatever.com">clp</a></footer>
<script src="app.js"></script>
<script src="load-app.js" type="module"></script>
</body>
</html>