88x31samegame/public/index.html

24 lines
No EOL
769 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">
<a href="https://github.com/sigmasternchen/88x31samegame">GitHub</a>
</div>
</body>
</html>