-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
163 lines (159 loc) · 5.73 KB
/
index.html
File metadata and controls
163 lines (159 loc) · 5.73 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!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/site.css" />
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css" />
<link rel="stylesheet" href="css/ayahs.css" />
<title>Document</title>
<style>
body{
margin: auto;
max-width: 750px;
}
.mainDiv{
display: flex;
justify-content: space-between;
}
.instructionsDiv{
flex: 0 0 33%;
}
.imageDiv{
flex: 1;
position: relative;
}
img{
height: 700px;
}
.overlayDiv{
direction: rtl;
position: absolute;
top: 21.2%;
left: 4%;
right: 26.5%;
bottom: 12%;
z-index: 1;
display: flex;
flex-direction: column;
}
.misshapen1top{
clip-path: polygon(0 0, 100% 0, 100% 100%, 60% 100%, 60% 88%, 55% 88%, 55% 100%, 0 100%);
}
.misshapen1bottom{
clip-path: polygon(0 0, 100% 0, 100% 100%, 55% 100%, 55% 12%, 60% 12%, 60% 100%, 0 100%);
}
</style>
</head>
<body id="myBody">
<header>
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-dark bg-primary border-bottom box-shadow mb-3">
<div class="container-fluid">
<a class="navbar-brand">Quran Reviser</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
<ul class="navbar-nav flex-grow-1">
<li class="nav-item">
<a class="nav-link">Home</a>
</li>
<li class="nav-item">
<a class="nav-link">Category</a>
</li>
<li class="nav-item">
<a class="nav-link">Privacy</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div >
<main role="main" class="pb-3">
<div class="mainDiv">
<div class="instructionsDiv">
<p>1- Down arrow to show Ayah</p>
<p>2- Up arrow to hide Ayah</p>
<p>3- Delete to hide entire page</p>
<p>4- Spacebar to show entire page</p>
</div>
<div class="imageDiv">
<img src="page411.jpg" alt="">
<div class="overlayDiv">
<!--Line 01-->
<div class="l01">
<div class="p01-1 ayah001"></div>
<div class="p02-2 ayah002"></div>
</div>
<!--Line 02-->
<div class="l02">
<div class="p01-2 ayah002"></div>
<div class="p02-2 ayah003"></div>
</div>
<!--Line 03-->
<div class="l03">
<div class="p01-3 ayah003"></div>
<div class="p02-3 ayah004"></div>
</div>
<!--Line 04-->
<div class="l04">
<div class="p01-4 ayah004"></div>
<div class="p02-4 ayah005"></div>
</div>
<!--Line 05-->
<div class="l05">
<div class="p01-5 ayah005"></div>
</div>
<!--Line 06-->
<div class="l06">
<div class="p01-6 ayah005"></div>
<div class="p02-6 ayah006"></div>
</div>
<!--Line 07-->
<div class="l07">
<div class="p01-7 ayah006"></div>
</div>
<!--Line 08-->
<div class="l08 misshapen1">
<div class="p01-8 ayah007"></div>
</div>
<!--Line 09-->
<div class="l09">
<div class="p01-9 ayah008"></div>
<div class="p02-9 ayah009"></div>
</div>
<!--Line 10-->
<div class="l10">
<div class="p01-10 ayah009"></div>
</div>
<!--Line 11-->
<div class="l11">
<div class="p01-11 ayah009"></div>
</div>
<!--Line 12-->
<div class="l12">
<div class="p01-12 ayah009"></div>
<div class="p02-12 ayah010"></div>
</div>
<!--Line 13-->
<div class="l13">
<div class="p01-13 ayah010"></div>
</div>
</div>
</div>
</div>
</main>
</div>
<footer class="border-top footer bg-primary text-center">
<div class="container">
Made with <i class="bi bi-heart-fill"></i> for Allah and his Prophet (pbuh)
</div>
</footer>
<script src="css/bootstrap.css"></script>
<script src="myscripts.js"></script>
</body>
</html>