meat/index.html

26 lines
531 B
HTML
Raw Normal View History

2026-08-04 02:09:54 +02:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MEAT</title>
<style>
html,
body {
margin: 0;
height: 100%;
background: #000;
overflow: hidden;
}
#screen {
display: block;
image-rendering: pixelated;
}
</style>
</head>
<body>
<canvas id="screen"></canvas>
<script type="module" src="/app/main.ts"></script>
</body>
</html>