-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.2 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
33
34
35
36
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<meta name="title" content="Métro travel" />
<meta
name="description"
content="Challenge yourself daily to find the optimal route between two Paris Metro stations."
/>
<meta name="keywords" content="metro, paris, travel, challenge, game" />
<meta name="author" content="Vincent Hardouin" />
<meta name="robots" content="index, follow" />
<meta name="og:title" content="Métro travel" />
<meta
name="og:description"
content="Challenge yourself daily to find the optimal route between two Paris Metro stations."
/>
<meta name="og:type" content="website" />
<meta name="og:url" content="https://metro-travel.vincenthardouin.dev" />
<title>Métro travel</title>
<link rel="stylesheet" href="src/style.scss" />
<script src="src/main.js" type="module"></script>
<script
defer
data-domain="metro-travel.vincenthardouin.dev"
src="https://analytics.vincenthardouin.dev/js/script.js"
></script>
</head>
<body>
<div id="app"></div>
</body>
</html>