-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (26 loc) · 861 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
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>HTML5 Pacman</title>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link href="./index.css" rel="stylesheet">
</head>
<body>
<div class="pacman-game">
Pacman game
</div>
<div id="pacman"></div>>
<script src="./dist/build.js" type="text/javascript"></script>
<script src="./index.js" type="text/javascript"></script>
<script src="./game.js" type="text/javascript"></script>
<script src="./player.js" type="text/javascript"></script>
<script src="./ghost.js" type="text/javascript"></script>
<script>
let wrapper = document.getElementById('pacman');
let game = new Game(wrapper);
debugger;
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.js"></script>
</body>
</html>