-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.2 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.2 KB
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
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Bubble Game</title>
</head>
<body>
<div id="main">
<div id="top">
<h3 id="heading">Bubble Guess Game</h3>
<button onclick="reloadPage()">Reset</button>
</div>
<div id="back">
<div id="info">
<h3 class="text">Click on : <span id="guess"></span></h3>
<h3 class="text">Time remaining : <span id="timer">60</span>s</h3>
<h3 class="text">Your score : <span id="score"></span></h3>
</div>
<div id="circles">
<!-- <div class="circle">8</div> -->
</div>
<div id="timeOut">
<h2>Time Out</h2>
<h3>Your score : <span id="toscore"></span></h3>
<button id="play" onclick="reloadPage()">Play Again</button>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>