88x31samegame/public/index.html

24 lines
769 B
HTML
Raw Normal View History

2025-01-26 18:48:52 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>88x31 SameGame</title>
<script src="./bundle.js"></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
2025-01-26 20:17:01 +00:00
<h1>88x31 SameGame</h1>
<div class="description">
Select groups of 3 or more adjoining blocks of the same type to remove them.
The blocks above will then fall down. Bigger groups result in more points.
The game ends when there are no more groups of 3 or more blocks exist on the board.
</div>
2025-01-26 19:16:12 +00:00
<div class="game-info"></div>
2025-01-26 18:48:52 +00:00
<div class="board">
2025-01-26 19:16:12 +00:00
<div class="gameover"></div>
2025-01-26 18:48:52 +00:00
</div>
2025-01-26 19:18:32 +00:00
<div class="meta-info">
<a href="https://github.com/sigmasternchen/88x31samegame">GitHub</a>
</div>
2025-01-26 18:48:52 +00:00
</body>
</html>