-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
31 lines (25 loc) · 854 Bytes
/
game.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
<!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="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;700;900&display=swap" rel="stylesheet">
<title>What Animal? | Game</title>
</head>
<body>
<div class="container">
<h4 id="question-number">Question <span id="counter">1</span></h4>
<div id="board">
<h4>Score: <span id="score">0</span></h4>
<h4>Guesses left: <span id="guesses">3</span></h4>
</div>
<h2 id="question"></h2>
<input type="text" id="input">
<p id="error"></p>
<button id="submit">Submit</button>
<button id="next" disabled>Next</button>
</div>
<script src="js/script.js"></script>
</body>
</html>