-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 836 Bytes
/
index.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
<html>
<head>
<script src="somePrintingStuff.js"></script>
<script src="pixelFonts.js"></script>
<script src="listeners.js"></script>
<script src="colors.js"></script>
<script src="welcome.js"></script>
<script src="noise.js"></script>
<script src="rand.js"></script>
<script src="game.js"></script>
<script src="grid.js"></script>
<script src="gen.js"></script>
</head>
<body>
<center>
<canvas style="
border: 0px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated"
class="pixelize" id="mainImage" width="384" height="256">
</canvas>
</center>
</body>
<script src="main.js"></script>
<script src="scaling.js"></script>
</html>