forked from elfreki/ColorGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 984 Bytes
/
index.html
File metadata and controls
30 lines (28 loc) · 984 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="colorgame.css">
</head>
<body>
<div id="headcontain">
<h1> Color Game <br>
<span id="picked">RGB</span></h1>
</div>
<div id="stripe">
<button id="new">new color</button>
<span id="message"></span>
<button id="easy">easy</button>
<button id="hard" class="selectedd">hard</button>
</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>
<script type="text/javascript" src="colorgame.js"></script>
</body>
</html>