breakout71/src/index.html

36 lines
1,018 B
HTML
Raw Normal View History

<!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=0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
2025-02-16 00:08:42 +01:00
<title>Breakout 71</title>
<meta
name="description"
content="A breakout game with roguelite mechanics. Break bricks, catch coins, pick upgrades, repeat. Play for free on mobile and desktop."
/>
2025-03-16 17:45:29 +01:00
<link rel="manifest" href="./PWA/manifest.json" />
2025-03-14 19:43:19 +01:00
2025-03-05 22:10:17 +01:00
<style>
2025-03-14 16:13:43 +01:00
@import "game.less";
2025-03-05 22:10:17 +01:00
</style>
2025-03-16 17:48:06 +01:00
<link rel="icon" href="data-url:./PWA/icon.svg" />
</head>
<body>
2025-03-15 10:58:37 +01:00
<button id="menu"><span id="menuLabel">menu</span></button>
<button id="score"></button>
<div id="FPSDisplay"></div>
2025-03-29 20:45:54 +01:00
<div id="statsdisplay"></div>
<canvas id="game"></canvas>
2025-03-20 18:44:46 +01:00
<div id="popup">
<button id="close-modale"></button>
</div>
<script type="module">
import "./game.ts";
2025-03-05 22:10:17 +01:00
</script>
</body>
</html>