-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
28 lines (25 loc) · 884 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>PacMan FirefoxOS</title>
<link rel=stylesheet href="css/style.css">
<script src="canvas.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.hammer-full.min.js"></script>
</head>
<body>
<canvas id="grid">
Message pour les navigateurs ne supportant pas encore canvas.
</canvas>
<h2>Score <span id="score">0</span></h2>
<h2 class="life">Life <span id="life">0</span></h2>
<button id="restart" onclick="javascript:window.location.reload();">Restart</button><button id="exit" onclick="javascript:window.close();">Exit</button>
<script src="js/engine.js"></script>
<script src="js/creature.js"></script>
<script src="js/pacman.js"></script>
<script src="js/map.js"></script>
<script src="js/ghost.js"></script>
<script src="js/types.js"></script>
</body>
</html>