Skip to content

Commit e275133

Browse files
authored
Create index.html
1 parent ac4d840 commit e275133

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

BubbleGame/AnuragC07/index.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="style.css">
7+
<title>Bubble Game</title>
8+
</head>
9+
<body>
10+
<!-- completed project -->
11+
<div class="outer-box">
12+
<div class="panel-top" id="ptop">
13+
<div class="score">
14+
<h2>hit</h2>
15+
<p id="hitNum">5</p>
16+
</div>
17+
<div class="score">
18+
<h2>timer</h2>
19+
<p id="timerInterval">60</p>
20+
</div>
21+
<div class="score">
22+
<h2>score</h2>
23+
<p id="scoreVal">0</p>
24+
</div>
25+
</div>
26+
<div class="panel-bottom" id="pbtm">
27+
<div class="bubble">
28+
5
29+
</div>
30+
</div>
31+
</div>
32+
<script src="script.js"></script>
33+
</body>
34+
</html>

0 commit comments

Comments
 (0)