-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 973 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="assets/pokeball.png">
<link rel="stylesheet" href="style.css">
<title>PokeCount</title>
</head>
<body>
<div class="player"></div>
<p id="score" class="score">Score: 0</p>
<!-- <p id="timer" class="timer">Time: 60s</p> -->
<!-- <p id="level" class="level">Level: 1</p> -->
<!-- Create a div to hold the alert box content -->
<div id="timer">Time: 60s</div> <!-- Timer display -->
<div class="alert-box" style="display: none;"> <!-- Initially hidden -->
<p>Game Over! Do you want to play again?</p>
<button id="play-again-btn">Play Again</button>
<!-- <button id="cancel-btn">Cancel</button> -->
</div>
<script src="main.js"></script>
</body>
</html>