-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (30 loc) · 750 Bytes
/
index.html
File metadata and controls
36 lines (30 loc) · 750 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
<!DOCTYPE html>
<html>
<head>
<style>
/* Center the canvas */
body, html {
height: 100%;
margin: 0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
canvas {
border: 1px solid lime;
cursor: none;
}
</style>
</head>
<body>
<div style="vertical-align:middle">
<canvas id="canvas" width="960" height="540">
Your browser does not support the HTML canvas tag.
</canvas>
</div>
<script type="module" src="main.js"></script>
<script type="module" src="modules/gameobject.js"></script>
<script type="module" src="modules/sprite.js"></script>
</body>
</html>