Mirai's Miscellaneous Misadventures

M9 / index.html

1<!doctype html>
2<html lang="en">
3<meta charset="utf-8">
4
5<title>Mirai’s Miscellaneous Misadventures</title>
6
7<style>
8
9html { height: 100%; touch-action: none; }
10body { margin: 0; background: #000; }
11html, body { display: grid; overflow: hidden; }
12canvas {
13	width: 100%; height: 100%;
14	image-rendering: crisp-edges;
15	image-rendering: pixelated;
16	object-fit: contain; }
17
18</style>
19
20<script type="module" src="main.js"></script>
21
22<canvas></canvas>