generated from github/codespaces-blank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpacman.html
32 lines (29 loc) · 1 KB
/
pacman.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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pacman</title>
<style>
@font-face {
font-family: 'Emulogic';
src: url("./fonts/emulogic.ttf") format('truetype');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'Emulogic', sans-serif;
}
</style>
</head>
<body style="width: 100%; min-width: 100vw; height: 100%; min-height: 100vh; margin: 0; padding: 0; background: #000000; display: flex; place-items: center; place-content: center;">
<canvas id="canvas" width="500" height="500"></canvas>
<div style="display: none;">
<img id="animation" src="./assets/animation.gif" alt="animation">
<img id="ghosts" src="./assets/ghost.png" alt="ghosts">
</div>
<script src="ghost.js"></script>
<script src="pacman.js"></script>
<script src="game.js"></script>
</body>
</html>