30 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| 	<head>
 | |
| 		<meta charset="utf-8" />
 | |
| 		<title>Labyrinthe</title>
 | |
|         <script type="text/javascript" src="labyrinthe.js"></script>
 | |
| 		<link rel="shortcut icon" type="image/png" href="mur.png"/>
 | |
| 		<link rel="stylesheet" type="text/css" href="style.css" />
 | |
| 		<link rel=”image_src” href="thumbnail.png" />
 | |
| 		<meta property="og:title" content="Labyrinthe" />
 | |
| 		<meta property="og:type" content="game" />
 | |
| 		<meta property="og:url" content="https://malingrey.fr/laby" />
 | |
| 		<meta property="og:image" content="https://malingrey.fr/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" />
 | |
|     </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>
 |