-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (49 loc) · 2.42 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
<!DOCTYPE html>
<html>
<head>
<!-- Author: https://gibrain.wordpress.com-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Pacifico&display=swap">
<link rel="stylesheet" href="./css/style.css?2024">
<script src="./js/jquery-3.6.0.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/script.js?2025"></script>
</head>
<body>
<audio id="background" src='sound/background.mp3'></audio>
<audio id="right" src='sound/right.mp3'></audio>
<audio id="wrong" src='sound/wrong.mp3'></audio>
<audio id="win" src='sound/win.ogg'></audio>
<div class="container mt-5" id="pilih_tema">
<div class="alert alert-success" role="alert">
silahkan pilih tema
</div>
<div id="tagContainer" class="mt-3">
<ul class="list-group">
</ul>
</div>
</div>
<div class="container mt-5" id="games" style="display: none;">
<div class="progress mb-3">
<div id="progress-bar" class="progress-bar progress-bar-striped progress-bar-animated progress-bar-custom" role="progressbar" style="width: 6.67%;" aria-valuenow="6.67" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<div id="labels" class="d-flex justify-content-between mb-3">
<!-- Labels will be added here -->
</div>
<div class="mb-3">
<button id="fifty" class="btn btn-primary"><i class="fas fa-adjust"></i></button>
<button id="phone" class="btn btn-primary"><i class="fas fa-phone"></i></button>
<button id="ask" class="btn btn-primary"><i class="fas fa-users"></i></button>
</div>
<div id="question" class="mb-3 font-weight-bold"></div>
<div id="options" class="row fixed-bottom pb-3 bg-white">
<!-- Options will be added here -->
</div>
</div>
<div class="container" style="display: none;" id="menang">
<div class="message"><!-- random praise placeholder --></div>
</div>
</body>
</html>