-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 868 Bytes
/
index.html
File metadata and controls
37 lines (37 loc) · 868 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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pac-Man</title>
<style>
#gameCanvas {
box-shadow: 10px 10px 20px black;
}
h1 {
text-align: center;
font-family: comic sans MS;
color: lightgrey;
}
body {
display: flex;
justify-content: center;
overflow: hidden;
height: 100vh;
background: linear-gradient(
0deg,
rgb(17, 51, 161) 0%,
rgb(136, 34, 195) 100%
);
}
</style>
</head>
<body>
<div>
<h1>Pac-Man</h1>
<canvas id="gameCanvas"></canvas>
</div>
<script src="src/Game.js" type="module"></script>
</body>
</html>