breakout/build/index.html
2026-08-09 13:08:28 -04:00

23 lines
393 B
HTML

<html lang="en">
<head>
<meta charset="utf-8">
<style>
body {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
background-color: #aaaaaa;
}
canvas {
background-color: black;
}
</style>
<title>Pong</title>
</head>
<script type="module">
import init from './breakout.js';
init();
</script>
</html>