-
Notifications
You must be signed in to change notification settings - Fork 0
/
instructions.html
39 lines (39 loc) · 1.59 KB
/
instructions.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
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>Huedle</title>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class = "header">
<h2>INSTRUCTIONS</h2>
<a href="index.html">home</a>
<a href="menu.html">play</a>
</div>
<div class = "instructions">
<p> ✧ The objective of this game is for you to
guess the RGB value of the randomly generated
color(s). <br><br>
✧ In level 1, you will get six chances to guess
one color <br><br>
✧ In level 2, you will get ten chances to guess
three colors simultaneously <br><br>
✧ You will know how close your RGB values are to
the actual answer by the coloring of the input
values after they are entered <br><br>
✧ The color guide will allow you
to determine how far your guess is from the actual answer. <br><br>
✧ You can always refer to it on the game page at the right or
by clicking the "instructions" button at the top.
<br><br>
✧ When an RGB input that you guessed is within
5 of the actual value, that square will turn green
<br><br>
✧ When all the input squares are green, you've won
the game!
</p>
</div>
</body>
</html>