-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplay.html
32 lines (31 loc) · 927 Bytes
/
play.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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Gotham Shadow</title>
<meta name="description" content="Gotham Shadow - Batman">
<meta name="author" content="Gaël Moliner">
<link href="./fonts/bungee/stylesheet.css" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="./assets/elements/favicon.jpg"/>
</head>
<body>
<div id="main">
<div class="border-area"></div>
<div class="game-content"></div>
<div class="gui-container flex bottom space-between hidden">
<div class="gui-element">
<a href="index.html">HOME</a>
</div>
<div class="gui-element">
<div id="score"></div>
</div>
<div class="gui-element">
<div id="life"></div>
</div>
</div>
<div class="border-area"></div>
</div>
<script src="build/style.min.js"></script>
<script src="build/index.min.js"></script>
</body>
</html>