Files
cjs-lite/step0/index.html
2026-06-12 18:48:27 +02:00

34 lines
721 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>step0</title>
<style>
body {
margin: 0;
padding: 0;
background-color: black;
overflow: hidden;
}
canvas {
position: relative;
width: 100%;
height: 100%;
image-rendering: pixelated;
}
#input {
position: absolute;
left: 50%;
top: 50%;
width: 0;
height: 0;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script src="main.js"></script>
</body>
</html>