-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (31 loc) · 896 Bytes
/
index.html
File metadata and controls
41 lines (31 loc) · 896 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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Color guessing game in javascript</title>
<link rel="stylesheet" href="color_game.css">
</head>
<body>
<div class="container">
<div class="header " id="header">
<h1> Color Guessing Game</h1>
<h1 id="color-display"> RGB(256,233,255)</h1>
</div>
<div class="section">
<button class="btn" id="play-again">New Color</button>
<button class="btn" id="result">Result</button>
<button class="btn" id="new-color">New Color</button>
</div>
<div class="footer">
<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>
</div>
<script src="guess_color.js"></script>
</body>
</html>