-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColor_Game.html
More file actions
28 lines (27 loc) · 835 Bytes
/
Color_Game.html
File metadata and controls
28 lines (27 loc) · 835 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
<!DOCTYPE html>
<html>
<head>
<title>Color Game</title>
<!-- <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> -->
<link rel="shortcut icon" href="cicon.ico" />
<link rel="stylesheet" type="text/css" href="color_game.css">
</head>
<body>
<h1>The Great<br><span id='colorh1'>RGB</span><br>Color Game</h1>
<div id="stripe">
<button id="reset">Change Color</button>
<span id="msg"></span>
<button class="mode">Easy</button>
<button class="mode selected">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="color_game.js"></script>
</body>
</html>