-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 874 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="icons/favicon.ico">
<title>Color Guessing Game</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>The Great <br><span id="colorDisplay"></span><br>Guessing Game</h1>
<h2>Score</h2>
<div id="middle">
<button id="reset" type="button">Reset</button>
<span id="message"></span>
<button id="easy" type="button">Easy</button>
<button id="hard" type="button" class="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="js/script.js"></script>
</body>
</html>