-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 744 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 744 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
<!DOCTYPE html>
<html>
<head>
<title>color game</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>The Great
<br>
<span id="displaycolor">RGB</span>
<br>
Color Game</h1>
<h3><button id="button1"> New Colors </button> <span id="message"></span> <button id="button2"> Easy </button> <button id="button3" class="selected"> Hard </button> </h3>
<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>
<h4>Hint :-You have to identify the color of the rgb color combination given above</h4>
<script type="text/javascript" src="main.js"></script>
</body>
</html>