-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
67 lines (63 loc) · 1.88 KB
/
index.htm
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!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" />
<title>Bubble गेम🫧</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="main" class="df">
<div class="game-panel">
<div class="panel-top">
<div class="elem">
<h1>Timer</h1>
<div id="timerValue" class="box df"></div>
</div>
<div class="elem df">
<h1>Hit</h1>
<div id="hitValue" class="box">0</div>
</div>
<div class="elem">
<h1>Score</h1>
<div id="scoreValue" class="box df">0</div>
</div>
</div>
<div class="panel-bottom">
<!--
<div class="gameOverBox">
<h2>Game Over ⛳️</h2>
<h2 id="inputTime">Time🕰️- </h2>
<h1>Your Score :-<span id="totalScore"> ${score}</span></h1>
<button onclick="refreshFn()">Start New Game</button>
</div> -->
<!-- <div class="bubble">
<h1>3</h1>
</div> -->
<!-- <section class="stage">
<figure class="ball bubble dfac">
<h1>1</h1>
</figure>
</section> -->
<div class="panel-inside">
<div class="details-container">
<h1 class="heading">Bubble Click Game 🫧</h1>
<div class="rules">
<h1>Scoring Rules</h1>
<h2>Hit Right✅ -> +10</h2>
</div>
<h2 class="mt">SELECT TIMING 🕰️</h2>
</div>
<div class="timer-select-container df">
<div class="second-box">20</div>
<div class="second-box">40</div>
<div class="second-box">60</div>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>