-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolorPicker.html
More file actions
32 lines (29 loc) · 825 Bytes
/
Copy pathcolorPicker.html
File metadata and controls
32 lines (29 loc) · 825 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 Game</title>
<link rel="stylesheet" type="text/css" href="colorPicker.css">
</head>
<body>
<div><h1 id="gameTitle">WHAT COLOR IS THIS? <br>
<span id="displayColor">RGB</span></h1></div>
<div id="script">
<button id="spanNewColor">NEW COLORS</button>
<span id="message" style="color: steelblue;"></span>
<button class="mode">EASY</button>
<button class="mode selected">HARD</button>
</div>
<div id="squareContainer">
<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 class="square"></div>
<div class="square"></div>
<div class="square"></div>
</div>
<script type="text/javascript" src="colorPicker.js"></script>
</body>
</html>