mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-25 06:26:16 -04:00
30 lines
878 B
HTML
30 lines
878 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=0"
|
|
/>
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
<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."
|
|
/>
|
|
<link rel="manifest" href="./PWA/manifest.json" />
|
|
|
|
<style>
|
|
@import "game.less";
|
|
</style>
|
|
<link rel="icon" href="data-url:./PWA/icon.svg" />
|
|
</head>
|
|
<body>
|
|
<button id="menu">☰ <span id="menuLabel">menu</span></button>
|
|
<button id="score"></button>
|
|
<canvas id="game"></canvas>
|
|
<script type="module">
|
|
import "./game.ts";
|
|
</script>
|
|
</body>
|
|
</html>
|