18 lines
368 B
HTML
18 lines
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>
|