-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 867 Bytes
/
index.html
File metadata and controls
30 lines (29 loc) · 867 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
<!DOCTYPE html>
<html>
<head>
<title>color game</title>
<link rel="stylesheet" type="text/css" href="color.css">
<link href="https://fonts.googleapis.com/css?family=Bangers|Courgette|Great+Vibes|Kaushan+Script|Permanent+Marker" rel="stylesheet">
</head>
<body >
<h1>THE GREAT COLOR GAME
<br> <span id="colordisplay"> RGB </span>
</h1>
<div id="stripe">
<button id="stripe2">REFRESH</button>
<button id="easybtn" >EASY</button>
<button id="hardbtn" class="selected">HARD</button>
<span id="message"></span>
</div>
<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>
<p> <span id="se">SCORE 0</span></p>
<script type="text/javascript" src="color.js"></script>
</body>
</html>