-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 1.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Rainbow Grid Game</title>
<link rel="stylesheet" href="css/game.css">
</head>
<body>
<script src="js/script.js"></script>
<main class="grid-game-container">
<h1><span class="red">R</span><span class="orange">a</span><span class="yellow">i</span><span class="green">n</span><span class="blue">b</span><span class="indigo">o</span><span class="violet">w</span>
<span class="gold">G</span><span class="gold">r</span><span class="gold">i</span><span class="gold">d</span></h1>
<div class="canvas-container"></div>
<div class="instructions">
<p>Use the arrow keys to merge adjacent squares of the same colour in to the next colour of the rainbow.</p>
<p>The aim of the game is to get to <span class="gold">Gold</span> at the end of the rainbow.</p>
<p>With every move a new square appears. Merge 2 together and 1 disappears.<p>
</div>
</main>
</body>
</html>