blob: 9d864586fa80f20a2be561cccdd81af1e27bb4fe (
plain)
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 http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>DocEys's LCOLONQ Microjam 2k26 Entry</title>
<style>
* {
margin: 0px;
padding: 0px;
}
body {
font-size: 10px;
}
#game_canvas {
image-rendering: pixelated;
display: block;
}
#game_restart {
visibility: hidden;
}
</style>
<script src="runtime.js"></script>
</head>
<body>
<canvas id="game_canvas" width="240" height="160">
Canvas no worky )':
</canvas>
<button id="game_restart">Restart Game</button>
</body>
</html>
|