mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-27 23:46:14 -04:00
21 lines
648 B
HTML
21 lines
648 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 𝟕𝟏</title>
|
||
<link rel="stylesheet" href="style.css?v=28994174" />
|
||
<link rel="icon" href="./icon.svg" />
|
||
</head>
|
||
<body>
|
||
<button id="menu">☰<span> menu</span></button>
|
||
<button id="score"></button>
|
||
<canvas id="game"></canvas>
|
||
<script src="levels.js?v=28994174"></script>
|
||
<script src="game.js?v=28994174"></script>
|
||
</body>
|
||
</html>
|