gpt-bomber/index.html
2026-03-08 11:39:57 +01:00

20 lines
536 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GPT Bomber</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="page-bg"></div>
<main class="layout">
<section class="game-shell">
<canvas id="game" width="720" height="624" aria-label="GPT Bomber game board"></canvas>
</section>
</main>
<script type="module" src="src/game.js"></script>
</body>
</html>