-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 2.33 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bubble Pop Game using CSS only</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<form id="game">
<div class="gameboard"><a class="text author" href="https://github.com/aoxrud-ww/bubble-pop">Github</a>
<div class="text progress-text">Bubbles Popped:</div>
<input class="checkbox" type="checkbox" id="checkbox-0">
<label class="label" for="checkbox-0" id="bubble-0">
<div class="bubble"></div>
</label>
<input class="checkbox" type="checkbox" id="checkbox-1">
<label class="label" for="checkbox-1" id="bubble-1">
<div class="bubble"></div>
</label>
<input class="checkbox" type="checkbox" id="checkbox-2">
<label class="label" for="checkbox-2" id="bubble-2">
<div class="bubble"></div>
</label>
<input class="checkbox" type="checkbox" id="checkbox-3">
<label class="label" for="checkbox-3" id="bubble-3">
<div class="bubble"></div>
</label>
<input class="checkbox" type="checkbox" id="checkbox-4">
<label class="label" for="checkbox-4" id="bubble-4">
<div class="bubble"></div>
</label>
<input class="checkbox" type="checkbox" id="checkbox-5">
<label class="label" for="checkbox-5" id="bubble-5">
<div class="bubble"></div>
</label>
<input class="checkbox" type="checkbox" id="checkbox-6">
<label class="label" for="checkbox-6" id="bubble-6">
<div class="bubble"></div>
</label>
<input class="checkbox" type="checkbox" id="checkbox-7">
<label class="label" for="checkbox-7" id="bubble-7">
<div class="bubble"></div>
</label>
<input class="checkbox" type="checkbox" id="checkbox-8">
<label class="label" for="checkbox-8" id="bubble-8">
<div class="bubble"></div>
</label>
<input class="checkbox" type="checkbox" id="checkbox-9">
<label class="label" for="checkbox-9" id="bubble-9">
<div class="bubble"></div>
</label>
<div class="complete">
<h1 class="text">Game Complete.</h1>
<button class="reset-button text" type="reset">Play Again</button>
</div>
</div>
</form>
</body>
</html>