-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolorgame.html
More file actions
33 lines (30 loc) · 974 Bytes
/
colorgame.html
File metadata and controls
33 lines (30 loc) · 974 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
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Color Game</title>
<!-- The Great RGB Color Game by Colt Steele (https://www.udemy.com/the-web-developer-bootcamp) -->
<!-- Added the responsive aspect to this page so it would be sacalable when veiwed on a tablet or phone-->
<link rel="stylesheet" type="text/css" href="./colorgame.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<h1>The Great <div id="colorDisplay">RGB</div> Color Game</h1>
<nav>
<button id="reset">New Colors</button>
<span id="message"></span>
<button class="mode">Easy</button>
<button class="mode selected">Hard</button>
</nav>
</header>
<main 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>
</main>
<script type="text/javascript" src="./colorgame.js"></script>
</body>
</html>