-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 736 Bytes
/
index.html
File metadata and controls
26 lines (25 loc) · 736 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
<!DOCTYPE html>
<html>
<head>
<title>Color Game </title>
<link rel="stylesheet" type="text/css" href="colorgame.css">
</head>
<body>
<h1 id="change">The Great <br> <span id="colordisplay"> RGB </span> <br>COLOR GAME</h1>
<div id="stripe">
<button id="newgame" class="buttons">New Game</button>
<b><span id="tryagain" ></span></b>
<button id="easy" class="buttons" >Easy</button>
<button id="hard" class="buttons selected">Hard</button>
</div>
<div class="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>
</body>
<script type="text/javascript" src="colorgame.js"></script>
</html>