23 lines
393 B
HTML
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>
|