-
Notifications
You must be signed in to change notification settings - Fork 34
/
index.html
77 lines (62 loc) · 2.45 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html dir="rtl">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<link rel="stylesheet" href="css/style.css" />
<title>القرآن الكريم</title>
</head>
<body>
<div id="wrapper">
<h1>القرآن الكريم</h1>
<div id="control">
<button data-offset="-100" aria-label="Go back by hundred pages" class="control__button">
<<<
</button> 
<button data-offset="-10" aria-label="Go back by ten pages" class="control__button">
<<
</button> 
<button data-offset="-1" aria-label="Go back by one page" class="control__button">
<
</button> 
<span class="control__page-num"></span> 
<button data-offset="1" aria-label="Go forward by one page" class="control__button">
>
</button> 
<button data-offset="10" aria-label="Go forward by ten pages" class="control__button">
>>
</button> 
<button data-offset="100" aria-label="Go forward by hundred pages" class="control__button">
>>>
</button> 
</div>
<div id="main">
<div id="suras">
<table class="suras__table">
<thead>
<tr>
<th>#</th>
<th>اسم</th>
<th>صفحة</th>
<th>عدد الآيات</th>
</tr>
</thead>
<tbody>
<tr>
<td>Loading ...</td>
</tr>
</tbody>
</table>
</div>
<div id="page">
Loading ...
</div>
<div id="tafseer">
Loading ...
</div>
</div>
</div>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/jquery.hotkey.js"></script>
<script src="js/quran.js"></script>
</body>
</html>