-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 815 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (26 loc) · 815 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Color Game Project</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>THE GREAT <span id="displaycolor">RGB(211, 206, 13)</span> GUESSING GAME</h1>
<div id="menu">
<button id="reset">Try Again</button>
<p id="result">Select the Mentioned Color Correctly.</p>
<button id="easy">Easy</button>
<button id="hard">Hard</button>
</div>
<div id="container">
<div class="colorbox"></div>
<div class="colorbox"></div>
<div class="colorbox"></div>
<div class="colorbox"></div>
<div class="colorbox"></div>
<div class="colorbox"></div>
</div>
<script src="script.js"></script>
</body>
</html>