-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.23 KB
/
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
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Color Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="assets/stylesheets/colors.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
</head>
<body>
<h1>The Great
<br>
<span id="colorDisplay">RGB</span><br>
Color Guessing Game</h1>
<div id="stripe">
<button id="reset">New Colors</button>
<span id="message"></span>
<button class="mode">Easy</button>
<button class="mode selected">Hard</button>
</div>
<div id="container">
<div class="square right"></div>
<div class="square low-mid"></div>
<div class="square left"></div>
<div class="square left"></div>
<div class="square center"></div>
<div class="square right"></div>
<div class="square right"></div>
<div class="square top-mid"></div>
<div class="square left"></div>
</div>
<script src="assets/scripts/colors.js"></script>
</body>
</html>