-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Color Quiz</title>
<link rel="stylesheet" href="css/color-quiz.css">
</head>
<body>
<div id="upperDiv">
<h1>THE GREAT</h1>
<div><span id="colorName"></span></div>
<div><h1>GUESSING GAME</h1></div>
</div>
<div id="lowerDiv">
<div class="contaner">
<h3>
<button id="reset">NEW GAME</button>
<span id="message"></span>
<button id="easy">EASY</button>
<button id="hard">HARD</button>
</h3>
</div>
</div>
<div class="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="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="js/color-quiz.js"></script>
</body>
</html>