Labyrinthe/index.html
2025-05-20 17:02:11 +02:00

33 lines
1.6 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang='fr' dir="ltr" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="utf-8"/>
<title>Labyrinthe</title>
<script type="text/javascript" src="labyrinthe.js"></script>
<script>navigator?.serviceWorker.register('service-worker.js')</script>
<link rel="shortcut icon" type="image/x-icon" href="favicon.php"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel=”image_src” href="thumbnail.png"/>
<link rel="manifest" href="manifest.json">
<meta property="og:title" content="Labyrinthe"/>
<meta property="og:type" content="game"/>
<meta property="og:url" content="https://adrien.malingrey.fr/jeux/laby/"/>
<meta property="og:image" content="https://adrien.malingrey.fr/jeux/laby/thumbnail.png"/>
<meta property="og:image:width" content="250"/>
<meta property="og:image:height" content="250"/>
<meta property="og:description" content="Trouveras-tu le fromage ?"/>
<meta property="og:locale" content="fr_FR"/>
<meta property="og:site_name" content="adrien.malingrey.fr"/>
</head>
<body>
<div style="display:none;">
<img id="mur" src="mur.png">
<img id="sol" src="sol.png">
<img id="pas" src="pas.png">
<img id="fromage" src="fromage.png">
<img id="souris" src="souris.png">
</div>
<canvas id="canvas" width="795" height="585">Votre navigateur ne supporte pas HTML5, veuillez le mettre à jour pour jouer.</canvas>
</body>
</html>