Mirai's Miscellaneous Misadventures
M5 / 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%; }
10body { margin: 0; background: #000; }
11html, body { display: grid; overflow: hidden; }
12canvas { width: 100%; height: 100%; }
13canvas { image-rendering: crisp-edges; }
14canvas { object-fit: contain; }
15
16</style>
17
18<script type="module" src="main.js"></script>
19
20<canvas></canvas>