website/web/index.html
Matthew Deville b0297c53f2 wip
2026-02-22 15:41:34 +01:00

35 lines
669 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bevy App</title>
<style>
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: #1a1a2e;
}
canvas {
width: 100%;
height: 100%;
display: block;
}
</style>
</head>
<body>
<canvas id="bevy-canvas"></canvas>
<script type="module">
import init from './app.js';
init();
</script>
</body>
</html>