pong/build/index.html
2026-08-05 16:56:02 -04:00

23 lines
389 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 './pong.js';
init();
</script>
</html>