-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreligious.html
289 lines (172 loc) · 5.96 KB
/
religious.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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Religious Books</title>
<style>
*{
margin:0px;
padding:0px;
}
body{
font-family: serif;
}
.main{
background-image:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.6)), url(bo-img/relc.png);
background-repeat: no-repeat;
background-size: cover;
}
.cards{
width:15%;
height:10%;
display: inline-block;
background-color: rgba(214, 204, 196, 0.322) ;
border-radius: 5px;
margin:50px;
box-shadow: 2px 2px 10px black;
max-height: 500px;
padding:1px;
}
.cards:hover{
box-shadow: 5px 5px 15px teal;
transform: scale(1.1);
}
.image img{
height:100%;
width:100%;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
}
.title{
text-align: center;
padding:5px;
color:black;
font-family: cursive;
}
.description{
text-align:center;
padding:4px;
max-height: 30px;
overflow-y: scroll;
font-size: small;
color: black;
font-family: fantasy;
}
button{
margin-top: 30px;
margin-bottom: 30px;
background-color: white;
border: 1px solid black;
padding: 5px;
border-radius: 5px;
cursor: pointer;
}
button:hover{
color: white;
background-color: black;
transition: 0.1s;
}
.review{
text-align: center;
}
</style>
</head>
<body>
<!-- main -->
<div class="main">
<div class="cards">
<div class="image">
<img src="rel-img\geeta.png">
</div>
<div class="title">
<h3>Bhagavad Gita</h3>
</div>
<div class="description" id="description">
<p>The Bhagavad Gita, often referred to as the Gita, is a 700-verse Hindu scripture that is part of the epic Mahabharata, commonly dated to the second century BCE. The Gita is set in a narrative framework of a dialogue between Pandava prince Arjuna and his guide and charioteer Krishna.</p>
</div>
<div class="review">
</div>
</div>
<div class="cards">
<div class="image">
<img src="rel-img\qura.png">
</div>
<div class="title">
<h3>The Quran</h3>
</div>
<div class="description">
<p>The Quran in Islam is regarded as the word of God that is revealed to Muhammad, and the Hadiths contains the saying of the Muhammad and his followers, as this is a kind of narrative. These are authoritative texts in Islam.</p>
</div>
<div class="review">
</div>
</div>
<div class="cards">
<div class="image">
<img src="rel-img\aga.png">
</div>
<div class="title">
<h3>The Agamas</h3>
</div>
<div class="description">
<p>The Agamas are based on the tirthankara, which is itself related to the body of doctrines that come through authoritative teachers. These are fixed truths and a tradition without any discernible origin.</p>
</div>
<div class="review">
</div>
</div>
<div class="cards">
<div class="image">
<img src="rel-img\book.png">
</div>
<div class="title">
<h3>The Book of Shadows</h3>
</div>
<div class="description">
<p>The text includes magical rituals found in the Neopagan religion known as Wicca. The Wicca movement proliferated in early 20th Century England, and has now spread across large parts of the English-speaking world.</p>
</div>
<div class="review">
</div>
</div>
<div class="cards">
<div class="image">
<img src="rel-img\tanak.png">
</div>
<div class="title">
<h3>The Tanakhs</h3>
</div>
<div class="description">
<p>The Tanakh is a collection of Jewish texts, and some of its source material serves as the basis for the Christian Bible's Old Testament. Many of the same divine teachings from the Bible are recorded in it</p>
</div>
<div class="review">
</div>
</div>
<div class="cards">
<div class="image">
<img src="rel-img\bi.png">
</div>
<div class="title">
<h3>The Holy Bible</h3>
</div>
<div class="description">
<p>The Bible is considered a divine inspiration that records the relationship between God and humankind. The sacred text dates back to 4th Century from when copies have been preserved in the Vatican Library, and includes the holy writing related to Jesus. It is regarded by Christians as the inerrant word of the God.</p>
</div>
<div class="review">
</div>
</div>
<div class="cards">
<div class="image">
<img src="rel-img\ggs.png">
</div>
<div class="title">
<h3>The Guru Granth Sahib</h3>
</div>
<div class="description">
<p>This sacred text, first compiled between the years 1563 and 1606 by Guru Arjan, the fifth Sikh Guru, also includes the teachings of 13 Hindu Bhakti movements’ saints, and two from Islam.</p>
</div>
<div class="review">
</div>
</div>
</div>
</div>
</body>
</html>