forked from Jagroop2001/Pages-A-Book-Shop-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
410 lines (397 loc) · 18.5 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
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pages -A Book Purchasing Website</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous" />
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="styles/slider.css">
<link rel="stylesheet" href="styles/bookcategory.css">
<link rel="stylesheet" href="styles/bestseller.css">
<link rel="stylesheet" href="styles/form.css">
<link rel="stylesheet" href="styles/faq.css">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Cardo&display=swap" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100&display=swap" rel="stylesheet" />
<!-- fontawsome cdn attachment -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div>
<div class="jumbotron jumbotron-fluid jumbotron-style ">
<div class="fixed-nav-parant">
<div class="container fixed-nav">
<nav class="navbar navbar-expand-lg">
<button class="navbar-toggler navbar-hamburger-style mb-2" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<a class="navbar-brand" href="index.html">
<img src="./images/Logo.png" class="d-inline-block align-top" alt="logo" />
</a>
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="https://facebook.com"><i class="fa-brands fa-square-facebook"
style="color: #ffffff;"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://twitter.com"><i class="fa-brands fa-square-x-twitter"
style="color: #ffffff;"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://linkedin.com"><i class="fa-brands fa-linkedin"
style="color: #ffffff;"></i></a>
</li>
</ul>
<ul class="navbar-nav ms-auto mb-2 mb-lg-0 ">
<li class="nav-item">
<div class="input-group">
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
</form>
<button id="search-button" type="button" class="btn btn-primary" style="height: 50%;">
<i class="fas fa-search"></i>
</button>
</div>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="index.html">Content</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="sign-up.html">Sign up</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="login.html">Login</a>
</li>
<li class="nav-item">
<a href="booking.html">
<button type="button" class="btn btn-warning px-4">
Order Today <i class="fa-solid fa-cart-shopping fa-beat"></i>
</button>
</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<div class="container d-flex justify-content-center my-5 container-fullscreen background-set">
<div class="row w-75 h-50 align-items-center ">
<div class="col-md-7">
<div class="container align-items-center">
<p class="text-light welcome-style gsap1 text-color">
<i>Welcome to Pages</i>
</p>
<p class="text-light h1 title-style gsap1 text-color">
Books are uniquely portable magic
</p>
<p class="description-style gsap1 text-color">
Unlock endless possibilities with every page turned at our bookshop. Dive into a world of imagination
today!
</p>
</div>
</div>
<div class="col-md-5 h-50 forefrontpage-img">
<img src="./images/Book.png" class="img-fluid" style="max-width: 100%; height: auto;" />
</div>
</div>
</div>
<!-- Slider starts -->
<div class="slider-container background-set-without-blur">
<div class="title">Trending Books</div>
<div class="slider">
<div class="slide">
<a href="#"><img src="images/AtomicOne.png" alt="trending book"></a>
</div>
<div class="slide">
<a href="#"><img src="images/DarkLight.png" alt="trending book"></a>
</div>
<div class="slide">
<img src="images/AtomicOne.png" alt="trending book">
</div>
<div class="slide">
<a href="#"><img src="images/DarkLight.png" alt="trending book"></a>
</div>
<div class="slide">
<img src="images/AtomicOne.png" alt="trending book">
</div>
<div class="slide">
<a href="#"><img src="images/DarkLight.png" alt="trending book"></a>
</div>
<div class="slide">
<img src="images/AtomicOne.png" alt="trending book">
</div>
<div class="slide">
<a href="#"><img src="images/DarkLight.png" alt="trending book"></a>
</div>
<div class="slide">
<img src="images/AtomicOne.png" alt="trending book">
</div>
<div class="slide">
<a href="#"><img src="images/DarkLight.png" alt="trending book"></a>
</div>
<div class="slide">
<img src="images/AtomicOne.png" alt="trending book">
</div>
<div class="slide">
<a href="#"><img src="images/DarkLight.png" alt="trending book"></a>
</div>
<div class="slide">
<img src="images/AtomicOne.png" alt="trending book">
</div>
</div>
</div>
</section>
<!-- Slider endss -->
</div>
</div>
</header>
<!-- book category section starts -->
<!-- Slider starts -->
<div class="slider-container background-set-without-blur">
<div class="title">Our Top category</div>
</div>
</section>
<section class="categorysection background-set-without-blur">
<div class="categorycard">
<div class="poster">
<img src="images/fictional.jpg" alt="">
</div>
<div class="parahome">
<h4>Fiction</h4>
<p>Mystery & Thriller,Romance,Science Fiction & Fantasy,Historical Fiction,Literary Fiction,Contemporary Fiction
</p>
</div>
<div class="btncard">
<a href="#"><button>Explore</button></a>
</div>
</div>
<div class="categorycard">
<div class="poster">
<img src="images/nonfictional.jpg" alt="">
</div>
<div class="parahome">
<h4>Non-Fiction</h4>
<p>Biography & Memoir, History,Self-help & Personal Development, Business & Finance, Science & Nature, Cooking,
Food & Wine Travel,Arts & Photography</p>
</div>
<div class="btncard">
<a href="#"><button>Explore</button></a>
</div>
</div>
<div class="categorycard">
<div class="poster">
<img src="images/kids.jpg" alt="">
</div>
<div class="parahome">
<h4>Children's Books</h4>
<p>Picture Books, Early Readers, Middle Grade, Educational Books, Activity Books</p>
</div>
<div class="btncard">
<a href="#"><button>Explore</button></a>
</div>
</div>
<div class="categorycard">
<div class="poster">
<img src="images/special.jpg" alt="">
</div>
<div class="parahome">
<h4>Specialty or Niche</h4>
<p>Graphic Novels & Comics, Religion & Spirituality, Health & Wellness, Gardening & DIY, Local Interest, Rare &
Collectible Books</p>
</div>
<div class="btncard">
<a href="#"><button>Explore</button></a>
</div>
</div>
</section>
<!-- book category section ends -->
<!-- best seller author section ends -->
<div class="slider-container background-set-without-blur">
<div class="title">Bestseller Author of the month</div>
</div>
<section>
<div class="container-fluid d-flex justify-content-center mt-5 background-set-without-blur "
style="background-color: #f6f8fc">
<div class="row w-75 h-50 align-items-center mb-5 Bestseller-author">
<div class="col-md-6 my-5 image">
<img src="./images/AboutAuthor.png" class="img-fluid" style="max-width: 100%; height: auto" />
</div>
<div class="col-md-6">
<div class="col-md-7 my-5 ">
<p class="book-detail-description-style gsap1">
Congratulations on becoming a best-selling author! Your captivating storytelling has touched countless
hearts and minds. Keep inspiring with your incredible talent.
</p>
<!-- <div class="w-75">
<p class="authors-book-style" style="text-align: left">
About Author
</p>
<a href="booking.html">
<button type="button" class="btn btn-outline-warning orderButton get-book-now-style btn-lg px-5 py-3">
Order Today
</button>
</a>
</div>
<div class="col-md-7 my-5">
<img src="./images/Cup.png" class="img-fluid" style="max-width: 100%; height: auto" />
<p class="book-detail-description-style">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Eligendi accusantium assumenda ab. Libero soluta esse cupiditate
dolor, dolorum assumenda ullam eaque illo iste, nulla architecto
optio, ducimus eligendi impedit sed! -->
<div class="row">
<div class="col-md-4 mt-2 vertical-line">
<p class="authors-book-style gsap1" style="text-align: left">05</p>
<p class="book-detail-description-style gsap1">Books Published</p>
</div>
<div class="col-md-4 mt-2 vertical-line">
<p class="authors-book-style gsap1" style="text-align: left">4.5</p>
<p class="book-detail-description-style gsap1">User Reviews</p>
</div>
<div class="col-md-4 mt-2">
<p class="authors-book-style gsap1" style="text-align: left">04</p>
<p class="book-detail-description-style gsap1">Best Seller Award</p>
</div>
</div>
<div class="row mt-2 Bestseller-author " style="background-color: #31363F">
<div class="col-md-4 p-2">
<img src="./images/qrCode.png" class="img-fluid gsap1" style="max-width: 100%; height: auto" />
</div>
<div class="col-md-8 neglect-css align-items-center">
<p class="authors-book-style mt-3 gsap1" style="text-align: left; color: #fae900">
John Abraham , Ph.d
</p>
<p class="book-detail-description-style mt-2 text-light gsap1">
Mail : johnabraham@gmail.com
</p>
<p class="book-detail-description-style text-light gsap1">
Phone : (+2) 123 545 9000
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- best seller author section ends -->
<!-- best selling book section starts -->
<div class="slider-container background-set-without-blur">
<div class="title">Bestselling Book of the month</div>
</div>
<section>
<div class="container-fluid d-flex justify-content-center background-set-without-blur"
style="background-color: #1b3764">
<div class="row w-75 h-25 align-items-center">
<div class="col-md-5">
<p class="text-light h1 title-style">Discover best-selling book by top author now</p>
<button type="button" class="btn btn-outline-warning get-book-now-style btn-lg px-5 py-3">
Order Today
</button>
</div>
<div class="col-md-7 my-5">
<img src="./images/Cup.png" class="img-fluid" style="max-width: 100%; height: auto" />
</div>
</div>
</div>
</section>
<!-- best selling book section ends -->
<!-- feedback form starts-->
<section class="feedback-section background-set-without-blur">
<div class="slider-container background-set-without-blur">
<div class="title">Submit Your Feedback</div>
</div>
<div class="row">
<form action="">
<input type="text" placeholder="your name" class="box">
<input type="email" placeholder="your email" class="box">
<textarea name="feedback" class="box paragraph" placeholder="your suggetions or feedback"></textarea>
<input type="submit" value="book now" class="btn">
</form>
</div>
</section>
<!-- feedback form ends -->
<!-- feedback section starts -->
<div class="slider-container background-set-without-blur">
<div class="title">FAQ's</div>
</div>
<section class="faq background-set">
<details>
<summary>How can I place an order?</summary>
<p>You can easily place an order on our website by browsing through our collection, selecting the books you'd like to purchase, and adding them to your cart. Follow the prompts to complete your order securely.</p>
</details>
<details>
<summary>What payment methods do you accept?</summary>
<p>We accept various payment methods, including credit/debit cards (Visa, Mastercard, American Express), PayPal, and sometimes other regional payment options depending on your location.</p>
</details>
<details>
<summary>Do you offer international shipping?</summary>
<p>Yes, we offer international shipping to many countries around the world. Shipping rates and delivery times may vary depending on your location. Please refer to our shipping information page for more details.</p>
</details>
<details>
<summary>How can I track my order?</summary>
<p>Once your order has been shipped, you will receive a confirmation email with a tracking number and instructions on how to track your package. You can also log in to your account on our website to track the status of your order.</p>
</details>
<details>
<summary>What is your return policy?</summary>
<p>We want you to be completely satisfied with your purchase. If for any reason you are not happy with your order, you may return it within [number] days of receipt for a full refund or exchange. Please refer to our returns policy page for more details and instructions on how to initiate a return.</p>
</details>
<details>
<summary>Can I cancel or modify my order after it has been placed?</summary>
<p>We process orders quickly to ensure prompt delivery, but we understand that circumstances may change. If you need to cancel or modify your order, please contact our customer service team as soon as possible, and we will do our best to accommodate your request.</p>
</details>
<details>
<summary>Are the books on your website new or used?</summary>
<p>We offer a mix of new and used books on our website. Each book listing will specify whether it is new or used, and we strive to provide accurate descriptions and images to help you make informed purchasing decisions.</p>
</details>
</section>
<!-- feedback section ends -->
<footer>
<hr>
<div class="footer-design justify-content-center align-items-center" style="background-color: #f4f8ff">
<img src="./images/envelope-regular.svg" height="20px" width="20px">
<a href=mailto:email@example.com>email@example.com</a>
</div>
<div class="justify-content-center align-items-center" style="background-color: #f4f8ff; padding-left: 30%;">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d117925.352312836!2d88.26495075765106!3d22.535406374409312!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39f882db4908f667%3A0x43e330e68f6c2cbc!2sKolkata%2C%20West%20Bengal!5e0!3m2!1sen!2sin!4v1709483441117!5m2!1sen!2sin"
width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<br>
<div class="footer-design justify-content-center align-items-center">
<p class="footer-text-style">@2023 Copyright: Pages</p>
</div>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"></script>
<!-- GSAP text animation -->
<script src="https://unpkg.com/split-type"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<script src="Scripts/anim1.js"></script>
<!-- GSAP text animation -->
<!-- slider js starts -->
<script src="Scripts/slider.js"></script>
<!-- slider js ends -->
</html>