-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (55 loc) · 2.25 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="fr">
<head>
<link rel="apple-touch-icon" sizes="144x144" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Gotflo Maze game</title>
</head>
<body>
<h1 id="title">Gotflo Maze game</h1>
<div id="center">
<div id="game">
<div id="maze">
<div id="end"></div>
</div>
<div id="joystick">
<div class="joystick-arrow"></div>
<div class="joystick-arrow"></div>
<div class="joystick-arrow"></div>
<div class="joystick-arrow"></div>
<div id="joystick-head"></div>
</div>
<div id="note">
Cliquez sur le joystick pour commencer!
<p>Déplacez chaque balle vers le centre. Prêt pour le mode dur? Appuyez sur H</p>
</div>
</div>
<!-- <button id="btnh" class="btn" onclick="ggg">H</button>
<button id="btn">E</button>
<button id="btn">Espace</button> -->
</div>
<!-- <a id="youtube" href="https://youtu.be/bTk6dcAckuI" target="_blank">
<span>See how this game was made</span>
</a>
<div id="youtube-card">
How to simulate ball movement in a maze with JavaScript
</div> -->
<div class="aboutdiv">
<div class="m-5">
<p class="copyright"> Copyright © 2022 Gotflo | +228 93 47 17 03 | <a
href="https://gotflo.github.io/myPortfolio/" class="hover:to-blue-600"> <span
id="myportfolio">Portfolio</span> </a> </p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>