-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
22 lines (22 loc) · 790 Bytes
/
main.html
File metadata and controls
22 lines (22 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bubble</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="container" id="main">
<div id="top" class="nav">
<div class="template"><h2>Hit </h2><div id='hit' class="minor"></div></div>
<div class="template"><h2>Timer </h2><div id='timer' class="minor">30</div></div>
<div class="template"><h2>Score </h2><div id='score' class="minor">0</div></div>
</div>
<div id="btm" class="play">
<div class="bubble">5</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>