-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 753 Bytes
/
index.html
File metadata and controls
32 lines (32 loc) · 753 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
<!doctype html>
<link rel="icon" type="image/x-icon" href="/logo.ico">
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>yet another collectathon</title>
<style>
* {
padding: 0;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
canvas {
background: #fff;
display: block;
margin: 0 auto;
}
</style>
</head>
<body>
<canvas id="game_screen" width="1676" height="918"></canvas>
<script>
</script>
<script src="./lib/lib.js"></script>
<script src="./lib/keys.js"></script>
<script src="./lib/draw.js"></script>
<script src="main.js"></script>
</body>
</html>