SonicInMinecraftInKaboom/index.html
MeowcaTheoRange 91ee11b0c0 First commit
2022-05-21 22:52:23 -05:00

18 lines
No EOL
368 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width">
<title>Kaboom</title>
</head>
<body style="background-color: black;">
<canvas id="kaboom"></canvas>
<script src="game.js" type="module"></script>
</body>
<style>
#kaboom {
position: absolute;
left: calc(50% - 256px);
top: calc(50% - 256px);
}
</style>
</html>