-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.html
38 lines (35 loc) · 1.06 KB
/
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
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">
<title>Bubble Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<div class="outer-box">
<div class="navbar">
<div class="hits mr-2">
<h3>Hits</h3>
<p class="value-box hitsvalue">1</p>
</div>
<div class="time mr-2">
<h3>Time</h3>
<p class="value-box timer">30</p>
</div>
<div class="Score mr-2">
<h3>Score</h3>
<p class="value-box scoreValue">0</p>
</div>
</div>
<div class="content">
<div class="Starting">
<button class="starting-text" onclick="Startingfun()">Start</button>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>