-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>
Color Game
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 style="font-size: 2.5em;">Hi, there</h1>
<p class="intro">
The three additive primary colours are red, green, and blue; this means that, by additively mixing the colours red, green, and blue in varying amounts, almost all other colours can be produced.
An RGB color value is specified with: rgb(red, green, blue).
Each parameter (red, green, and blue) defines the intensity of the color as an integer between 0 and 255.
You will be given randomly generated RGB value and you have to guess the colour.<br>
Happy playing!
</p>
<div class="levels">
<a href="easy.html"><button class="lev">Easy</button></a>
<a href="hard.html"><button class="lev">Hard</button></a>
</div>
</body>
</html>