88x31samegame/public/index.html

25 lines
No EOL
868 B
HTML

<!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>
<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>
<div class="game-info"></div>
<div class="board">
<div class="gameover"></div>
</div>
<div class="meta-info">
Source code on <a href="https://github.com/sigmasternchen/88x31samegame">GitHub</a><br />
Banners from <a href="https://cyber.dabamos.de/88x31/">dabamos.de</a>
</div>
</body>
</html>