SonicInMinecraftInKaboom/index.html

18 lines
368 B
HTML
Raw Normal View History

2022-05-22 03:52:23 +00:00
<!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>