ethermap/frontend/index.html
2023-09-14 16:28:57 +02:00

27 lines
853 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ethermap</title>
<!-- leaflet -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""></script>
<!-- styles -->
<link rel="stylesheet" href="/styles/main.css">
<!-- javascript -->
<script type="module" src="/src/EthermapApp.js"></script>
</head>
<body>
<ethermap-app></ethermap-app>
</body>
</html>