-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 858 Bytes
/
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>
<link rel="stylesheet" href="style.css">
<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 guessing gam</title>
</head>
<body>
<div class="header">
<p>THE GREAT</p>
<h2 id="guess">RGB(255,212,123)</h2>
<p>GUESSING GAME</p>
</div>
<div class="mode">
<span>NEW COLORS</span>
<div class="diff">
<span>EASY</span>
<span>HARD</span>
</div>
</div>
<div class="colors">
<div id="easy"></div>
<div id="easy"></div>
<div id="easy"></div>
<div id = 'hard'></div>
<div id = 'hard'></div>
<div id = 'hard'></div>
</div>
<p id="anouncement"></p>
<button id="reset">play again</button>
<script src="app2.js"></script>
</body>
</html>