-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
584 lines (438 loc) · 20.8 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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
<!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>Book Store Website</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<section>
<nav>
<div class="logo">
<img src="image/Untitled design (4).png">
</div>
<ul>
<li><a href="#Home">Home</a></li>
<li><a href="second.html">About</a></li> <!----Top Navigation Bar---->
<li><a href="tabs.html">Books</a></li>
<li><a href="review.html">Reviews</a></li>
<li><a href="index1.html">Sign Up</a></li>
</ul>
<div class="social_icon">
<i class="fa-solid fa-magnifying-glass"></i>
<i class="fa-solid fa-heart"></i>
</div>
</nav>
<div class="main">
<div class="main_tag">
<h1>WELCOME TO<br><span>BOOK STORE</span></h1>
<p>
"Discover a world of stories at our online book store.
Browse an extensive collection of books spanning various genres,
from thrilling adventures to heartwarming romances. <!----home page---->
Explore new releases, bestsellers, and hidden gems,
all just a click away. Find your next literary adventure today!"
</p>
</div>
<div class="main_img">
<img src="image/table.png">
</div>
</div>
</section>
<!--
about
<section id="#about"></section>
<div class="about">
<div class="about_image">
<img src="image/Screenshot 2023-10-14 at 10.52.51 PM.png">
</div>
<div class="about_tag">
<h1>About Us</h1>
<p>
At BOOK STORE, we are passionate about the written word.
Our mission is to provide a digital haven for book lovers and knowledge seekers.
With a diverse collection of eBooks spanning genres, from classic literature to
contemporary bestsellers, we're dedicated to fostering a love for reading in the
digital age. Whether you're an avid reader or just starting your literary journey,
our platform is your gateway to a world of captivating stories and insightful
knowledge. Join us in celebrating the joy of reading in the digital realm.
</p>
<a href="#" class="about_btn">Learn More</a>
</div>
</div> --!>
<!--Service-->
<section id="service">
<div class="title-text"> <!----features of website---->
<p>SERVICES</p>
<h1>Services provided are:</h1>
</div>
<div class="service-box">
<div class="single-service"> <!--pic1-->
<img src="image/pxfuel (1).jpg">
<div class="overlay"></div>
<div class="service-desc">
<h3>Vast EBook Library:</h3>
<hr>
<p>With thousands of titles to choose from, you're sure to find the perfect eBook for your reading pleasure.</p>
</div>
</div>
<div class="single-service"> <!--pic2-->
<img src="image/pxfuel.jpg">
<div class="overlay"></div>
<div class="service-desc">
<h3>User-Friendly Platform:</h3>
<hr>
<p>Easily navigate through our library, discover new releases, and access your favorite eBooks with just a few clicks.</p>
</div>
</div>
<div class="single-service"> <!--pic3-->
<img src="image/pxfuel.jpg">
<div class="overlay"></div>
<div class="service-desc">
<h3>Instant Access:</h3>
<hr>
<p>Get instant access to your chosen eBooks. No waiting, no shipping fees—simply select a title, and it's at your fingertips in seconds.</p>
</div>
</div>
<div class="single-service"> <!--pic4-->
<img src="image/pxfuel (1).jpg">
<div class="overlay"></div>
<div class="service-desc">
<h3>Regular Updates:</h3>
<hr>
<p>Stay up to date with the latest eBook releases, author news, and literary events. We're committed to keeping your reading experience fresh and exciting.</p>
</div>
</div>
</div>
</div>
</section>
<!----featured---->
<section id="#featured"></section>
<div class="featured_boks">
<p>FEATURED</p>
<h1>Scroll through our famous books:</h1>
<div class="featured_book_box">
<div class="featured_book_card"> <!----scroll bar for featured books---->
<div class="featurde_book_img">
<img src="image/hunted by the past.png">
</div>
<div class="featurde_book_tag">
<h2>HUNTED BY THE PAST</h2>
<div class="writer">Jami Gray</div>
<div class="categories">Thriller, Horror, Romance</div>
<a href="https://drive.google.com/file/d/1RBXu8BIFaXzerCKHtmYsfe1zKDFdrNZN/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/olivia-mourning.png">
</div>
<div class="featurde_book_tag">
<h2>OLIVIA MOURNING</h2>
<div class="writer">Yael Politis</div>
<div class="categories">Thriller, Horror, Romance</div>
<a href="https://drive.google.com/file/d/1kujMpO3auu0NfCt0vSMOWDmPe_05QtoY/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/warr of the animals.jpg">
</div>
<div class="featurde_book_tag">
<h2>WAR OF ANIMALS</h2>
<div class="writer">Jonathon Decoteau</div>
<div class="categories">Thriller, Mystery</div>
<a href="https://drive.google.com/file/d/1zB6s_rG8vo0we5YTc133vGLU7lRqapTr/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/After the Cure.PNG">
</div>
<div class="featurde_book_tag">
<h2>AFTER THE CURE</h2>
<div class="writer">Deirdre Gould</div>
<div class="categories">Action, Adventure</div>
<a href="https://drive.google.com/file/d/1OLJkKLncat2QazeWpm0nMhq9BQPiQRAI/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/Adventures-of-Huckleberry-Finn.PNG">
</div>
<div class="featurde_book_tag">
<h2>HUCKLEBERRY</h2>
<div class="writer">Mark Twain</div>
<div class="categories">Mystery, Action</div>
<a href="https://drive.google.com/file/d/1X5ap_KZK1kxD5altgBZFKnqKIYZRZej6/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/Agent to the Stars.PNG">
</div>
<div class="featurde_book_tag">
<h2>AGENT TO STARS</h2>
<div class="writer">John Scalz</div>
<div class="categories">Adventure</div>
<a href="https://drive.google.com/file/d/1CI1zX9VhSes7NDcGNCUgHsg-uS5YfcH8/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/Robinson-Crusoe.PNG">
</div>
<div class="featurde_book_tag">
<h2>ROBINSON CRUSOE</h2>
<div class="writer">Steven Zorn</div>
<div class="categories">Action,Adventure</div>
<a href="https://drive.google.com/file/d/1rPBoWLflYGT068MRyhJoji5bAguwIn3f/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/King-Solomon's-Mines.PNG">
</div>
<div class="featurde_book_tag">
<h2>KING SOLOMON</h2>
<div class="writer">H.Rider Haggard</div>
<div class="categories">Action,Adventure</div>
<a href="https://drive.google.com/file/d/10OLGJIFiiZbquY1whf_w9GToJnOEVp_3/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/A Journey to the Centre of the Earth.PNG">
</div>
<div class="featurde_book_tag">
<h2>JOURNEY TO EARTH</h2>
<div class="writer">Jules Verne</div>
<div class="categories">Science,Fiction</div>
<a href="https://drive.google.com/file/d/1QiLMS1Ry_pWLlIuTk9d7zJCECfJJowRj/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/At-the-Earth's-Core.PNG">
</div>
<div class="featurde_book_tag">
<h2>EARTH'S CORE</h2>
<div class="writer"> Edgar Rice</div>
<div class="categories">Science,Fiction</div>
<a href="https://drive.google.com/file/d/14eZp5cmqSQnx2ej95Rm38hxw2O3GI-t5/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/Accelerando.PNG">
</div>
<div class="featurde_book_tag">
<h2>ACCELERANDO</h2>
<div class="writer">Charles Stroes</div>
<div class="categories">Thriller, Science</div>
<a href="https://drive.google.com/file/d/1Z_wn1sv6VYborOEDQ3_PYZ7WFZD-2Olr/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/The-Aliens.PNG">
</div>
<div class="featurde_book_tag">
<h2>ALIENS</h2>
<div class="writer">Alan Dean Foster</div>
<div class="categories">Horror,Action</div>
<a href="https://drive.google.com/file/d/1GO50BZ2sFG11bweeGxPVWIFAj4kTsWQN/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/Youth.PNG">
</div>
<div class="featurde_book_tag">
<h2>YOUTH</h2>
<div class="writer">Lane Smith</div>
<div class="categories">Thriller, Horror</div>
<a href="https://drive.google.com/file/d/1KZNVzeyfm9KmKSkS5jo3YaBj-eq_cxxy/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/Clarimonde.PNG">
</div>
<div class="featurde_book_tag">
<h2>CLARIMONDE</h2>
<div class="writer">Gautier</div>
<div class="categories">Horror</div>
<a href="https://drive.google.com/file/d/1b_IXuBNNwCbNoWw1k8U_C799l9pNL5-B/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
<div class="featured_book_card">
<div class="featurde_book_img">
<img src="image/metamorphosis.PNG">
</div>
<div class="featurde_book_tag">
<h2>METAMORPHOSIS</h2>
<div class="writer">Franz Kafka</div>
<div class="categories">Horror,Action</div>
<a href="https://drive.google.com/file/d/12u6FVHzk3XBMbn96NreL58LLRZ-tWiTt/view?usp=drive_link" class="f_btn">Read Now</a>
</div>
</div>
</div>
</div>
<!--Arrivals-->
<section id="#arrivals"></section>
<div class="arrivals"> <!----arrivals to dislplay new books---->
<p>NEW ARRIVALS</p>
<h1> Check Our New Books:</h1>
<div class="arrivals_box">
<div class="arrivals_card">
<div class="arrivals_image">
<img src="image/Ayesha.PNG">
</div>
<div class="arrivals_tag">
<div>Ayesha</div>
<div class="arrivals_icon">
</div>
<a href="https://drive.google.com/file/d/13fRTdOM2Jrxcga-VTfr7JbX-hhz9gDdG/view?usp=drive_link" class="arrivals_btn">READ NOW</a>
</div>
</div>
<div class="arrivals_card">
<div class="arrivals_image">
<img src="image/Gulliver's-Travels.PNG">
</div>
<div class="arrivals_tag">
<div>Gulliver's Travels</div>
<div class="arrivals_icon">
</div>
<a href="https://drive.google.com/file/d/1wKu8-HdrP9A7qdQkzZKAKimUydRo3GNR/view?usp=drive_link" class="arrivals_btn">READ NOW</a>
</div>
</div>
<div class="arrivals_card">
<div class="arrivals_image">
<img src="image/Heart-of-Darkness.PNG">
</div>
<div class="arrivals_tag">
<div>Heart of Darkness</div>
<div class="arrivals_icon">
</div>
<a href="https://drive.google.com/file/d/1UIY_TtD2SLQK5m36-ISde29FM-Fxguky/view?usp=drive_link" class="arrivals_btn">READ NOW</a>
</div>
</div>
<div class="arrivals_card">
<div class="arrivals_image">
<img src="image/King-Solomon's-Mines.PNG">
</div>
<div class="arrivals_tag">
<div>King Solomon's Mines</div>
<div class="arrivals_icon">
</div>
<a href="https://drive.google.com/file/d/10OLGJIFiiZbquY1whf_w9GToJnOEVp_3/view?usp=drive_link" class="arrivals_btn">READ NOW</a>
</div>
</div>
<div class="arrivals_card">
<div class="arrivals_image">
<img src="image/Robinson-Crusoe.PNG">
</div>
<div class="arrivals_tag">
<div>Robinson Crusoe</div>
<div class="arrivals_icon">
</div>
<a href="https://drive.google.com/file/d/1rPBoWLflYGT068MRyhJoji5bAguwIn3f/view?usp=drive_link" class="arrivals_btn">READ NOW</a>
</div>
</div>
<div class="arrivals_card">
<div class="arrivals_image">
<img src="image/The-Adventures-of-Huckleberry-Finn.PNG">
</div>
<div class="arrivals_tag">
<div>Adventures of Huckleberry Final</div>
<div class="arrivals_icon">
</div>
<a href="https://drive.google.com/file/d/1wpcbI_AyQ7P3V3K5d-YSCObDtKg6jH4x/view?usp=drive_link" class="arrivals_btn">READ NOW</a>
</div>
</div>
<div class="arrivals_card">
<div class="arrivals_image">
<img src="image/The-Arabian-Nights-Entertainments.PNG">
</div>
<div class="arrivals_tag">
<div>Arabian Nights</div>
<div class="arrivals_icon">
</div>
<a href="https://drive.google.com/file/d/1qy0z6RiCIP1m3dsxPcRW9O6DiHF_UNfZ/view?usp=drive_link" class="arrivals_btn">READ NOW</a>
</div>
</div>
<div class="arrivals_card">
<div class="arrivals_image">
<img src="image/The-Black-Moth.PNG">
</div>
<div class="arrivals_tag">
<div>Black Moth</div>
<div class="arrivals_icon">
</div>
<a href="https://drive.google.com/file/d/1BwhJqjKk67rn5k6vPfM6eCRaX2W8vg6W/view?usp=drive_link" class="arrivals_btn">READ NOW</a>
</div>
</div>
<div class="arrivals_card">
<div class="arrivals_image">
<img src="image/And-That's-How-It-Was-Officer.PNG">
</div>
<div class="arrivals_tag">
<div>And that's how it was Officer</div>
<div class="arrivals_icon">
</div>
<a href="https://drive.google.com/file/d/1SB__Ct4Y1eajhXUeGPl8bV1SPK7qzNGt/view?usp=drive_link" class="arrivals_btn">READ NOW</a>
</div>
</div>
<div class="arrivals_card">
<div class="arrivals_image">
<img src="image/Anthem.PNG">
</div>
<div class="arrivals_tag">
<div>Anthem</div>
<div class="arrivals_icon">
</div>
<a href="https://drive.google.com/file/d/18CGCLePNakiYQjWVKOHFQzvoEVfCawL1/view?usp=drive_link" class="arrivals_btn">READ NOW</a>
</div>
</div>
</div>
<!--footer-->
<footer>
<div class="footer_main">
<div class="tag">
<p>
Your go-to source for <!----footer to show contacts---->
eBooks and literary adventures.
Enjoy reading with Book Store.
</p>
</div>
<div class="tag">
<h1>Contact Info</h1>
<a href="#"><i class="fa-solid fa-phone"></i>+91 0000000000</a>
<a href="#"><i class="fa-solid fa-phone"></i>+91 0000000000</a>
<a href="#"><i class="fa-solid fa-envelope"></i>[email protected]</a>
</div>
<div class="tag">
<h1>Follow Us</h1>
<div class="social_link">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-linkedin-in"></i>
</div>
</div>
<div class="tag">
<h1>Newsletter</h1>
<div class="search_bar">
<input type="text" placeholder="You email id here">
<button type="submit">Subscribe</button>
</div>
</div>
</div>
<p class="end">Design By<span><i class="fa-solid fa-face-grin"></i> BG1</span></p>
</footer>
</body>
</html>