-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
20 lines (19 loc) · 766 Bytes
/
Index.html
File metadata and controls
20 lines (19 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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 🍡</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Color Guessing Game 🍡</h1>
<p data-testid="gameInstructions">Guess the correct color! 🤔</p>
<div id="colorBox" data-testid="colorBox"></div>
<div class="color-options" id="colorOptions" data-testid="colorOptions"></div>
<p id="gameStatus" data-testid="gameStatus"></p>
<p>Score: <span id="score" data-testid="score">0</span></p>
<button id="newGameButton" data-testid="newGameButton">New Game</button>
<script src="script.js"></script>
</body>
</html>