demo-pop-game/index.html
2026-09-01 20:44:48 +02:00

28 lines
727 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
<title>Pop! Pop! Pop!</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #f0f0f0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100dvh;
width: 100vw;
}
canvas {
display: block;
}
</style>
</head>
<body>
<div id="game-container"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>