-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.html
61 lines (58 loc) · 2.25 KB
/
page.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
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<title>Quran page</title>
</head>
<body style="color: white;">
<header>
<nav class="nav-bar-mobile">
<i class="fas fa-bars" id="burger-button"></i>
<div class="nav-column hide">
<a href="index.html"><i class="fas fa-mosque"></i></a>
<a href="tasbeeh.html"><i class="fas fa-pray"></i></a>
</div>
</nav>
</header>
<div id="bar-back">
<div id="bar-container">
<div id="bar">
<div id="fill">
<p id="percent">
0%
</p>
</div>
</div>
</div>
</div>
<main style="padding-top: 55px;">
<h1 class="title-main" style="font-family: serif;"></h1>
<div class="controls">
</div>
<select name="translation" id="translation">
<option value="fr.hamidullah">Français</option>
<option value="en.asad">English</option>
</select>
<div class="container" style="line-height: 1.5;">
</div>
<div class="controls">
</div>
</main>
<footer>
<small>Made by <a href="https://github.com/GentlesDev">GentlesDev</a></small>
<small><a href="https://www.instagram.com/gentlesdev/"><i class="fab fa-instagram"></i></a></small>
<small><a href="https://twitter.com/GentlesDev"><i class="fab fa-twitter"></i></a></small>
<small><a href="https://alquran.cloud/api">Quran API</a> </small>
<small style="width: 100%;">Récitateur / Reciter : Mishary Rashid Al-Afasy</small>
<small style="width: 100%;">Traducteur / Translator : Muhammad Hamidullah(fr) / Muhammad Asad(en)</small>
</footer>
<audio class='audio' controls></audio>
</body>
<script src="js/user.js"></script>
<script src="js/page.js"></script>
</html>