forked from omkrishna/ColorGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.html
More file actions
33 lines (29 loc) · 1.09 KB
/
Copy pathrules.html
File metadata and controls
33 lines (29 loc) · 1.09 KB
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
<!DOCTYPE html>
<html>
<head>
<title>ColorGame-Rules</title>
<style>
body {
background-color:bisque;
}
h1 {
text-align:center;
}
div {
border:black 1px solid;
}
</style>
</head>
<body>
<h1>RULES</h1>
<div>
<h3>1) At each turn you will be shown 6 tiles of different colour and a RGB value</h3>
<h3>2) You will have to guess the correct colour(represented by the RGB value) among the 6 tiles, and select it by clicking on it.</h3>
<h3>3) On selecting the correct tile, that tile will become white.</h3>
<h3>4) On selecting the wrong tile, that tile will become black.</h3>
<h3>5) After result of one pick is shown, a new combination of tiles will be shown.</h3>
<h3>6) Each correct pick will give you one point.</h3>
<h3>7) You will have a total of 8 incorrect attempts available, after that 'GAME OVER!'</h3>
</div>
</body>
</html>