-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
executable file
·26 lines (23 loc) · 822 Bytes
/
Copy pathgame.html
File metadata and controls
executable file
·26 lines (23 loc) · 822 Bytes
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title> GO WILD </title>
<link rel="stylesheet" type="text/css" href="style/style.css">
<link rel="stylesheet" type="text/css" href="style/sweetalert.css">
</head>
<body class="game">
<div id="grid"></div>
<div id="score_one">0</div>
<div id="score_two">0</div>
<button class="passer" onclick="skip();">
<img id="passer" alt="passer" title="passer" src="images/salut1.png">
</button>
<button class="abandon" onclick="skip('abandonment');">
<img id="abandon" alt="abandon" src="images/salut2.png">
</button>
<script type="text/javascript" src="scripts/sweetalert.min.js"></script>
<script type="text/javascript" src="scripts/main.js"></script>
<script type="text/javascript" src="scripts/ia.js"></script>
</body>
</html>