-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.21 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
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colour Tile Game</title>
<link rel="stylesheet" href="mainstyle.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia&effect=neon|outline|emboss|shadow-multiple">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia&effect=fire">
</head>
<body>
<h1 class= "font-effect-shadow-multiple">Colour Tiles</h1>
<br>
<br>
<div class = "instr">
<h2 >How to play :</h2>
<br>
<p > Click on the tile you want to move.</p>
<p> Move the tiles to match the colour pattern shown in the grid shown on the left.</p>
<p>Your score is based on the number of moves and the time you take to complete.</p>
</div>
<br>
<br>
<br>
<div class = choice>
<h2>Choose difficulty level</h2>
<br>
<a href = 5X5.html><button class = "easy">Easy</button></a>
<a href = 6X6.html><button class = "difficult">Difficult</button></a>
</div>
</body>
</html>