-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (36 loc) · 1.14 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
<!DOCTYPE html>
<html lang="id" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ar-Rahman Qur'an</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="logo.png" type="image/png">
</head>
<body>
<header>
<div class="logo-container">
<img src="logo.png" alt="Logo Ar-Rahman Qur'an" class="logo">
<h1>Ar-Rahman Qur'an</h1>
</div>
</header>
<main>
<h2>Pilih Surat dan Pembaca</h2>
<div class="form-container">
<label for="reciter">Pilih Pembaca:</label>
<select id="reciter"></select>
</div>
<div class="form-container">
<label for="surat">Pilih Surat:</label>
<select id="surat"></select>
</div>
<button onclick="playFullSurah()">Play Full Surah</button>
<audio id="player" controls style="display:none;"></audio>
<div id="quranText"></div>
</main>
<footer>
<p>© 2025 Ar-Rahman Qur'an. by Farul.</p>
</footer>
<script src="app.js"></script>
</body>
</html>