-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.33 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
36
37
38
39
40
41
42
<!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>Color game</title>
<link rel="shortcut icon" href="img/Bez nazwy.png" type="image/png" />
<meta name="description" content="guess color by it's RGB code" />
<link rel="shortcut icon" href="favicon.png" type="image/png" />
<link
href="https://fonts.googleapis.com/css?family=Montserrat:100,400,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="header">
<h1>
the great<br />
<span id="colorDisplay">RGB</span> <br />Color Game
</h1>
<div id="stripe">
<button id="reset">New Colors</button>
<span id="message"></span>
<button id="easyBtn">Easy</button>
<button id="hardBtn" class="selected">hard</button>
</div>
</header>
<div class="wrapper">
<div class="container">
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>