-
Notifications
You must be signed in to change notification settings - Fork 681
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 752 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 752 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">
<link rel="stylesheet" href="style.css">
<title>Color Guessing Game</title>
</head>
<body>
<div class="game-container">
<h1 data-testid="gameInstructions">Guess the correct color!</h1>
<div class="box-color" data-testid="colorBox"></div>
<div class="options-container" data-testid="colorOption"></div>
<div class="game-status" data-testid="gameStatus"></div>
<div class="score" data-testid="score">Score: 0</div>
<button class="new-game-btn" data-testid="newGameButton">New Game</button>
</div>
<script src="main.js"></script>
</body>
</html>