-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (57 loc) · 2.2 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
60
<!DOCTYPE html>
<html lang="fr">
<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>Verset</title>
</head>
<body>
<header>
<nav class="nav-bar-mobile">
<i class="fas fa-bars" id="burger-button"></i>
<div class="nav-column hide">
<a href="quran.html"><i class="fas fa-quran"></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>
<h1 class="title-main">Un verset une bonne action</h1>
<div class="hadiths">
<p>عن أبي مسعود عقبة بن عمرو الأنصاري البدري رضى الله عنه قال :
قال رسول الله صلي الله علية وسلم :
إن مما أدرك الناس من كلام النبوة الأولى : إذا لم تستح فاصنع ما شئت .
( رواه البخاري )</p>
</div>
<div class="container">
<h2 class="verse"></h2>
</div>
</main>
<div class="hadiths-end">
<p>صدق الله العظيم</p>
</div>
<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>
</footer>
</body>
<script src="js/user.js"></script>
<script src="js/main.js"></script>
</html>