-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 882 Bytes
/
index.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
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Color Game</title>
<link rel="stylesheet" type="text/css" href="color_game.css">
</head>
<body>
<h1>The Great
<br>
<span id="selectedCDisplay">RGB</span>
<br>
Color Game</h1>
<div id="stripe">
<button id="reset">New Colors</button>
<span id="message"></span>
<button id ="easyb">Easy</button>
<button id ="hardb">Hard</button>
</div>
<div class="scontainer">
<div class="squares"></div>
<div class="squares"></div>
<div class="squares"></div>
<div class="squares"></div>
<div class="squares"></div>
<div class="squares"></div>
</div>
<script type="text/javascript" src="color_game.js"></script>
<script type="text/javascript">
setTimeout(() => {alert ("Welcome to play game, choose your difficulty level and pick a color box that matches the \"rbg\" on the top of the page ");}, 2000);
</script>
</body>
</html>