-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (27 loc) · 841 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
<!DOCTYPE html>
<html>
<head>
<title>RGB Color Guessing Game</title>
<link rel="stylesheet" type="text/css" href="RGB.css">
</head>
<body>
<h1>The Great <br> <span id="rgb">RGB</span> <br> Color GUESSING GAME</h1>
<!-- to print the message- correct or wrong -->
<div id="displayBar">
<button id="reset">NEW COLORS</button>
<span id="message"></span>
<button class="mode">EASY</button>
<button class="mode selected">HARD</button>
</div>
<!-- all divs to form the 6 squares -->
<div id="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>
<script type="text/javascript" src="RGB.js"></script>
</body>
</html>