-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 809 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 809 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Cool Color Picker Game</title>
</head>
<body>
<h1>Cool Color Picker Game</h1>
<div class="game-container">
<button class="purple" onclick="checkGuess('purple')">
Purple
</button>
<button class="green" onclick="checkGuess('green')">Green</button>
<button class="orange" onclick="checkGuess('orange')">
Orange
</button>
</div>
<!-- Custom Dialog -->
<div id="dialogBox" class="dialog">
<p id="dialogMessage"></p>
<button onclick="closeDialog()">OK</button>
</div>
</body>
<script src="script.js"></script>
</html>