-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcolor.html
More file actions
32 lines (27 loc) · 753 Bytes
/
color.html
File metadata and controls
32 lines (27 loc) · 753 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
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>color</title>
<link rel="stylesheet" type="text/css" href="color.css">
</head>
<body>
<h1>THE GREAT
<br>
<span id="display">rgb</span>
<br>
COLOR GAME</h1>
<p id="topbar"> <button id ="newGame"> New Game </button>
<span id= "displayResult"></span>
<button id="easyButton">EASY</button>
<button class = "selected" id = "hardButton"> HARD</button></span></p>
<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="color.js"></script>
</body>
</html>