Files
bworld/client/index.html
T
2026-02-24 15:36:10 -03:00

37 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>bworld</title>
<style>
/*
Font by Daniel Linssen (https://managore.itch.io)
https://managore.itch.io/m6x11
*/
@font-face {
font-family: "m6x11";
src: url("/assets/fonts/m6x11.ttf");
font-weight: normal;
font-style: normal;
font-smooth: never;
}
html, body {
width: 100vw;
height: 100vh;
margin: 0;
overflow: hidden;
}
canvas {
display: block;
image-rendering: pixelated;
}
</style>
</head>
<body>
<canvas id="game"></canvas>
<script src="main.ts" type="module"></script>
</body>
</html>