-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1005 Bytes
/
index.html
File metadata and controls
34 lines (31 loc) · 1005 Bytes
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
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Dots by Furqan Software</title>
<link rel="icon" href="/favicon.png" />
<link rel="manifest" href="/dots.webmanifest" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Funnel+Sans:wght@400;700&family=Major+Mono+Display:wght@400&display=swap"
/>
<link
rel="stylesheet"
href="https://api.mapbox.com/mapbox-gl-js/v3.20.0/mapbox-gl.css"
/>
<script src="https://api.mapbox.com/mapbox-gl-js/v3.20.0/mapbox-gl.js"></script>
<script>
mapboxgl.accessToken = "__MAPBOX_TOKEN__";
</script>
<script
data-goatcounter="https://goatcounter.dots.fsapp.co/count"
src="https://goatcounter.dots.fsapp.co/count.js"
async
></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>