-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColorGame.html
28 lines (26 loc) · 1020 Bytes
/
ColorGame.html
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>Brain Test Color Game</title>
<link rel="stylesheet" type="text/css" href="ColorGame.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
</head>
<body>
<div id="header"><h1> THE Brain Test
<br><span id="colordisplay">RGB</span><br> Color Game </h1></div>
<div id="strip">
<button id="reset">New Colors</button>
<span id="messagedisplay"></span>
<button class="mode selected">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 src="ColorGame.js" type="text/javascript"></script>
</body>
</html>