-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>my game</title>
</head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<body>
<h1 class="titre"> HalloClick <i class="fa fa-gamepad" aria-hidden="true"></i> </h1>
<button class="reset" data-action="reset">Reset</button>
<section data-state="optionScreen" class="gamesCreams hidden"><br>
<label> Nombre de case sur l'axe X</label> <br>
<input class="case" type="number" name="x" value="10"> <br>
<label> Nombre de case sur l'axe Y</label> <br>
<input class="case" type="number" name="y" value="10"> <br>
<button data-action="startGame" name="button">Start Game</button>
<center><p> version v1 by Marty Hemart</p></center>
</section>
<section data-state="gameScreen" class='gamesCreams hidden'></section>
<section data-state="victory"> <h1 class="victoir"> Bravo </h1> </section>
<section data-state="defeat"> <h1 class="victoir"> game over </h1></section>
<a href="http://martyhemart.fr" target="_blank"> <input type="button" value="Retour"> </a>
</body>
<script
src="https://code.jquery.com/jquery-3.2.1.js"
integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE="
crossorigin="anonymous"></script>
<script type="text/javascript" src="js/javascript.js"></script>
</html>