forked from anuragverma108/SwapReads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
playNow.html
1109 lines (983 loc) · 35.7 KB
/
playNow.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
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Popular Books - SwapReads</title>
<link rel="stylesheet" href="./assets/css/playNow.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Poppins:wght@400;500;600&display=swap"
rel="stylesheet">
<style>
/* General Styles */
body {
font-family: Arial, sans-serif;
background-color: #fff;
color: #333;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center; /* Centering content */
}
.hero {
padding-block-start: calc(var(--section-padding) + 60px);
text-align: center;
background-color: #ffe5e5; /* Light pink background */
width: 100%; /* Full width */
}
.container {
display: flex;
flex-wrap: wrap;
gap: 2rem;
align-items: flex-start; /* Adjusted for consistent spacing */
justify-content: center; /* Centering the content */
max-width: 1200px; /* Maximum width for container */
}
.hero-content {
width: 55%;
display: flex;
flex-direction: column;
align-items: start;
}
.hero .hero-title {
font-size: 2.5rem;
color: #c21807;
margin-block: 10px 25px;
text-align: start;
}
.hero .section-text {
font-size: 1.2rem;
color: #a10000;
margin-top: 0;
}
.has-before,
.has-after {
position: relative;
z-index: 1;
}
.has-before::before,
.has-after::after {
content: "";
position: absolute;
}
.hero-banner .w-100 {
border-radius: 10px;
height: 100%;
}
.hero-banner {
width: 40%;
padding-inline-start: 20px;
padding-block-end: 15px;
max-width: 400px;
margin-top: 2.5rem;
position: relative;
margin: 5%;
}
.hero-banner::before {
top: 30px;
right: 30px;
bottom: 0;
left: 0;
background-color: rgb(216, 114, 130);
border-radius: 10px;
z-index: -1;
}
.hero-banner img {
width: 100%;
border-radius: 10px;
transition: transform 0.3s ease;
animation: float 1.5s ease-in-out infinite;
}
/* Header Styles */
.hero-title {
font-size: 2.5rem;
color: #c21807;
margin-block: 10px 25px;
}
.section-text {
font-size: 1.2rem;
color: #a10000;
}
/* Float animation */
@keyframes float {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0);
}
}
/* Genre Section Styling */
.genre-section {
font-family: "Open Sans", sans-serif;
display: flex;
align-items: center;
margin: 40px 0;
padding: 20px;
background-color: #ffe5e5; /* Light pink background */
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.genre-content {
width: 55%;
padding: 20px;
background-color: #fff4e1; /* Cream background for the description box */
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.genre-title {
font-family: "Merriweather", serif;
font-size: 2rem;
color: #c21807;
margin: 10px 0;
}
.book-author,
.book-genre {
font-family: 'Open Sans', sans-serif;
font-weight: bold;
color: #c21807;
}
.book-description {
font-family: 'Open Sans', sans-serif; /* Keep description easy to read */
font-size: 1rem;
color: #333;
}
/* Import a font from Google Fonts for a stylish look */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
color: #333;
}
.header {
width: 90%; /* Set a width to make it look like a centered rectangle */
max-width: 1200px;
background-color: #ffffff; /* White background */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
margin: 0 auto; /* Center header */
z-index: 10;
border-radius: 10px;
margin-top: 25px;
}
.logo {
display: flex;
align-items: center;
font-size: 1.5rem;
color: #000000; /* Black text color */
font-weight: bold;
margin-top: 30px;
}
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px; /* Reduced spacing for a thinner look */
max-height: 80px;
}
.navbar-list {
display: flex;
list-style: none;
align-items: center;
}
.navbar-item {
position: relative;
}
.navbar-link {
color: #000000; /* Black text */
text-decoration: none;
font-size: 17px; /* Slightly smaller font */
position: relative;
transition: color 0.3s ease;
font-weight: normal; /* Remove bold font */
margin: 0 10px;
}
.navbar-link {
position: relative; /* Ensure the link has a position for the absolute positioning of the pseudo-element */
}
.navbar-link:hover {
color: #a52644; /* Dark pink on hover */
}
.navbar-link::after {
content: "";
position: absolute;
bottom: -5px; /* Adjust this value to create a gap */
left: 0px;
height: 3px;
background-color: #fcb0b480;
width: 0;
box-shadow: 0 0 10px #f39d127e;
transition: all 0.6s;
text-decoration: none;
}
.navbar-link:hover::after {
width: 100%;
text-decoration: none;
}
.action {
position: relative;
}
.profile {
cursor: pointer;
display: flex;
align-items: center;
margin-right: 10px;
}
#profile-avatar {
width: 35px;
height: 35px;
border-radius: 50%;
border: 2px solid #d72672; /* Dark pink border */
}
.menu {
position: absolute;
top: 50px;
right: 0;
background: #fff;
border-radius: 10px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
display: none; /* Hidden initially */
width: 200px;
z-index: 100;
padding: 10px;
}
.action:hover .menu {
display: block; /* Show menu on hover */
}
.menu h3 {
margin-bottom: 10px;
color: #d72672;
font-size: 1.1rem;
}
.menu ul {
list-style: none;
padding: 0;
}
.menu ul li {
display: flex;
align-items: center;
padding: 8px 10px;
font-size: 0.9rem;
}
.menu ul li img {
width: 20px;
margin-right: 10px;
}
.menu ul li a {
text-decoration: none;
color: #333;
}
.menu ul li a:hover {
color: #d72672; /* Dark pink on hover */
}
.section-title {
font-family: 'Merriweather', serif;
font-size: 1.5rem;
font-weight: 700;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
margin: 30px 0; /* Add spacing above and below */
gap: 15px; /* Space between the line and text */
color: rgb(230, 103, 124);
background-color: rgba( 255, 255, 255, 0.909 );
padding: 10px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
text-align: center;
}
input, button, textarea {
background: none;
border: 2px solid grey;
border-radius: 10px;
padding: 10px;
font: inherit;}
/* Base styling for the hamburger icon */
.hamburger {
display: none;
flex-direction: column;
gap: 4px;
cursor: pointer;
background: none;
border: none;
padding: 0;
z-index: 1001;
}
.hamburger span {
display: block;
width: 30px;
height: 4px;
background-color: #333;
transition: transform 0.3s ease;
}
/* Responsive styling */
@media (max-width: 1000px) {
/* Hide the navbar by default on small screens */
.navbar {
display: none;
position: absolute;
top: 70px; /* Matches header height for below-header dropdown */
left: 0;
width: 100%;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
z-index: 1000;
max-height: initial;
}
.header{
width: 100%;
}
.navbar.active {
display: block;
}
/* Hamburger icon visible only on smaller screens */
.hamburger {
display: flex;
margin-top: 20px;
margin-bottom: 20px;
}
/* Center-align navbar links in mobile view */
.navbar ul.navbar-list {
flex-direction: column;
text-align: center;
}
/* Adjusted theme switcher styling for mobile */
.switch-container {
margin: 0 auto;
padding-top: 1rem;
}
.genre-content {
width: 100% !important;
}
.book-description{
text-align: justify;
}
}
/* Container for the switch */
.switch-container {
display: flex;
align-items: center;
position: relative;
}
/* Hide default checkbox */
.switch-checkbox {
display: none;
}
/* Style the label */
.switch-label {
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
width: 50px;
height: 24px;
border-radius: 50px;
background-color: #ccc;
transition: background-color 0.3s ease;
position: relative;
}
/* Style the toggle button */
.switch-button {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 0 5px;
position: absolute; /* Fixes the position */
left: 0; /* Keeps the button fixed */
}
/* Sun and moon icon styles */
.sun-icon,
.moon-icon {
font-size: 16px;
transition: opacity 0.3s ease;
}
/* Color the icons */
.sun-icon {
color: orange; /* Sun icon color */
}
.moon-icon {
color: lightblue; /* Moon icon color */
opacity: 0; /* Initially hidden */
}
/* Style for checked state */
.switch-checkbox:checked + .switch-label {
background-color: #333;
}
.switch-checkbox:checked + .switch-label .sun-icon {
opacity: 0; /* Hide sun icon in dark mode */
}
.switch-checkbox:checked + .switch-label .moon-icon {
opacity: 1; /* Show moon icon in dark mode */
}
</style>
<style>
/* Circle styles */
.circle {
height: 24px;
width: 24px;
border-radius: 50%;
background-color: black;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
transition: transform 0.1s ease-out;
}
.cursor {
position: absolute;
width: 6px;
/* Circle size */
height: 6px;
/* Circle size */
background-color: rgba(255, 165, 0, 0.6);
/* Orange color */
border-radius: 10%;
/* Circular shape */
pointer-events: none;
/* Prevent interaction */
transform: translate(-10%, -10%);
/* Center the circle */
transition: transform 0.1s ease-out;
/* Smooth movement */
}
</style>
</head>
<body>
<!-- Circles -->
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<header class="header header-anim nav-h" data-header>
<div class="container mobile-container-styles">
<button class="hamburger" id="hamburger-button" aria-label="Menu">
<span></span>
<span></span>
<span></span>
</button>
<nav class="navbar nav_activated" data-navbar>
<ul class="navbar-list nav" style="margin-right: 10px;">
<a href="index.html" class="logo" style="display:flex;">
<img src="./assets/images/final.png" class="logopic" style=" width: 10rem; height:100px; margin:0px 0px 15px -10px;">
</a>
<li class="navbar-item" style="margin-right: 10px;">
<a href="index.html" class="navbar-link" data-nav-link>
<i class="ri-home-fill"></i> Home
</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="./assets/html/about.html" class="navbar-link" data-nav-link>
<i class="ri-information-fill"></i> About Us
</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="index.html#benefits" class="navbar-link" data-nav-link><i
class="ri-bar-chart-fill"></i> Benefits</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="index.html#genre" class="navbar-link" data-nav-link><i
class="ri-bar-chart-fill"></i> Genre</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="audiobook.html" class="navbar-link" data-nav-link>
<i class="ri-questionnaire-fill"></i> Audio Books
</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="index.html#contact" class="navbar-link" data-nav-link>
<i class="ri-contacts-fill"></i> Contact
</a>
</li>
<li class="navbar-item" id="login-signup-link" style="margin-right: 10px;">
<a href="./assets/html/login.html" class="navbar-link">
<i class="ri-login-box-fill"></i> Login/Signup
</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="comsp.html" class="navbar-link" data-nav-link>
<i class="ri-book-fill"></i> Community
</a>
</li>
<li class="navbar-item" style="margin-right: 10px;">
<a href="./assets/html/event.html" class="navbar-link" data-nav-link>
<i class="ri-community-fill"></i> Events
</a>
</li>
<!-- Theme switcher -->
<div class="switch-container">
<input type="checkbox" id="switch" class="switch-checkbox">
<label for="switch" class="switch-label">
<div class="switch-button">
<span class="material-icons sun-icon">wb_sunny</span>
<span class="material-icons moon-icon">brightness_2</span>
</div>
</label>
</div>
<script>
// Theme switcher
document.addEventListener('DOMContentLoaded', function () {
const toggleSwitch = document.querySelector('.switch-container input[type="checkbox"]');
const bodyElement = document.body;
const currentTheme = localStorage.getItem('theme') || 'light';
if (currentTheme === 'dark') {
bodyElement.classList.add('dark-mode');
toggleSwitch.checked = true;
} else {
bodyElement.classList.add('light-mode');
}
toggleSwitch.addEventListener('change', function (event) {
if (event.target.checked) {
bodyElement.classList.remove('light-mode');
bodyElement.classList.add('dark-mode');
localStorage.setItem('theme', 'dark');
} else {
bodyElement.classList.remove('dark-mode');
bodyElement.classList.add('light-mode');
localStorage.setItem('theme', 'light');
}
});
});
// Hamburger toggle
document.getElementById('hamburger-button').addEventListener('click', function() {
document.querySelector('.navbar').classList.toggle('active');
});
// Coordinates for the cursor
const coords = {x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
// Colors for the circles
const colors = [
"#ffb56b", "#fdaf69", "#f89d63", "#f59761", "#ef865e", "#ec805d",
"#e36e5c", "#df685c", "#d5585c", "#d1525c", "#c5415d", "#c03b5d",
"#b22c5e", "#ac265e", "#9c155f", "#950f5f", "#830060", "#7c0060",
"#680060", "#60005f", "#48005f", "#3d005e"
];
// Assign colors and initial position to each circle
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
// Update the coordinates when the mouse moves
window.addEventListener("mousemove", function (e) {
coords.x = e.clientX;
coords.y = e.clientY;
});
// Animation function to move the circles
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
// Update the position and scale of each circle
circle.style.left = x - 12 + "px";
circle.style.top = y - 12 + "px";
circle.style.scale = (circles.length - index) / circles.length;
circle.x = x;
circle.y = y;
// Get the next circle in the sequence
const nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.15;
y += (nextCircle.y - y) * 0.15;
});
// Repeat the animation
requestAnimationFrame(animateCircles);
}
// Start the animation
animateCircles();
function scrollToGenre(genreId) {
const element = document.getElementById(genreId);
if (element) {
element.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
}
</script>
</header>
<div class="section-title">
<span>Explore Books Popular Among SwapRead Users in Different Genres</span>
</div>
<div class="genre-nav">
<button onclick="scrollToGenre('romance')">Romance</button>
<button onclick="scrollToGenre('sci-fi')">Science Fiction</button>
<button onclick="scrollToGenre('mystery')">Mystery</button>
<button onclick="scrollToGenre('fantasy')">Fantasy</button>
<button onclick="scrollToGenre('thriller')">Thriller</button>
<button onclick="scrollToGenre('comedy')">Comedy</button>
<button onclick="scrollToGenre('true-crime')">True Crime</button>
<button onclick="scrollToGenre('philosophy')">Philosophy</button>
</div>
<div class="container">
<!-- Romance Genre Section -->
<div class="genre-section" id="romance">
<div class="hero-banner has-before">
<img
src="./assets/images/rom.jpg"
alt="Romance Book Cover"
class="w-100"
/>
</div>
<div class="genre-content">
<div>
<h2 class="genre-title">Red, White & Royal Blue</h2>
<span style="font-size:5rem; float: right;">❤</span>
</div>
<p class="book-author">by Casey McQuiston</p>
<p class="book-genre">Most Popular Romance Book</p>
<p class="book-description">
"Red, White & Royal Blue" is a delightful romantic comedy that
explores the whirlwind romance between the First Son of the United
States and a British prince. Their story unfolds against a backdrop
of political intrigue, family expectations, and the journey of
self-discovery. This heartwarming tale is filled with witty banter,
touching moments, and a celebration of love that transcends
boundaries and defies conventions.
</p>
</div>
</div>
<!-- Science Fiction Genre Section -->
<div class="genre-section" id="sci-fi">
<div class="genre-content">
<h2 class="genre-title">Neuromancer Trilogy </h2>
<span style="font-size:5rem;filter: grayscale(100%);float: right;">🚀</span>
<p class="book-author">by William Gibson</p>
<p class="book-genre">Top Science Fiction Book</p>
<p class="book-description">
In "Neuromancer Trilogy," readers are thrust into a dystopian future
where technology and humanity collide. The narrative follows a
washed-up computer hacker hired for one last job: to pull off the
ultimate hack. This groundbreaking trilogy explores themes of
artificial intelligence, corporate greed, and the blurred lines
between reality and virtual existence, crafting a thrilling saga
that challenges our understanding of technology and society.
</p>
</div>
<div class="hero-banner has-before">
<img
src="./assets/images/sci.jpg"
alt="Science Fiction Book Cover"
class="w-100"
/>
</div>
</div>
<!-- Mystery Genre Section -->
<div class="genre-section" id="mystery">
<div class="hero-banner has-before">
<img
src="./assets/images/mystery.jpg"
alt="Mystery Book Cover"
class="w-100"
/>
</div>
<div class="genre-content">
<h2 class="genre-title">The Great Adventures of Sherlock Holmes</h2>
<span style="font-size:5rem;filter: grayscale(100%); float: right;">🌒</span>
<p class="book-author">by Arthur Conan Doyle</p>
<p class="book-genre">Favorite Mystery Book</p>
<p class="book-description">
"The Great Adventures of Sherlock Holmes" is a collection of
timeless detective stories featuring the iconic detective Sherlock
Holmes and his loyal companion Dr. Watson. From the puzzling case of
the "Speckled Band" to the intriguing "Hound of the Baskervilles,"
each story delves into the art of deduction, showcasing Holmes's
brilliance and the thrilling pursuit of justice. These tales have
captivated readers for generations with their clever plots and
memorable characters.
</p>
</div>
</div>
<!-- Fantasy Genre Section -->
<div class="genre-section" id="fantasy">
<div class="genre-content">
<h2 class="genre-title">A Court of Thorns and Roses</h2>
<span style="font-size:5rem;filter: grayscale(100%); float: right;">🔮</span>
<p class="book-author">by Sarah J. Maas</p>
<p class="book-genre">Popular Fantasy Book</p>
<p class="book-description">
"A Court of Thorns and Roses" is an enchanting tale that weaves a
rich tapestry of magic, romance, and adventure. The story follows
Feyre, a mortal girl who finds herself entangled in a dangerous
faerie realm after killing a wolf in the woods. As she navigates a
world filled with powerful fae and intricate politics, Feyre
discovers love, betrayal, and her own inner strength. This
captivating narrative draws readers into a lush fantasy world where
nothing is as it seems and every choice has consequences.
</p>
</div>
<div class="hero-banner has-before">
<img
src="./assets/images/fantasy.jpg"
alt="Fantasy Book Cover"
class="w-100"
/>
</div>
</div>
<!-- Thriller Genre Section -->
<div class="genre-section" id="thriller">
<div class="hero-banner has-before">
<img
src="./assets/images/thriller.jpg"
alt="Thriller Book Cover"
class="w-100"
/>
</div>
<div class="genre-content">
<h2 class="genre-title">The Girl on the Train</h2>
<span style="font-size:5rem;filter: grayscale(100%); float: right;">🔍</span>
<p class="book-author">by Paula Hawkins</p>
<p class="book-genre">Top Thriller Book</p>
<p class="book-description">
"The Girl on the Train" is a psychological thriller that intricately
weaves the lives of three women, each harboring secrets and desires.
The story unfolds through the eyes of Rachel, an alcoholic who
becomes entangled in a missing persons investigation after
witnessing something shocking from her train window. As the
narrative progresses, the tension escalates, revealing a web of
lies, betrayal, and unexpected connections that will keep readers
guessing until the very last page.
</p>
</div>
</div>
<!-- Comedy Genre Section -->
<div class="genre-section" id="comedy">
<div class="genre-content">
<h2 class="genre-title">Carry On, Jeeves</h2>
<span style="font-size:5rem;filter: grayscale(100%); float: right;">🤹</span>
<p class="book-author">by P. G. Wodehouse</p>
<p class="book-genre">Classic Comedy Book</p>
<p class="book-description">
"Carry On, Jeeves" is a delightful collection of stories featuring the
effortlessly charming Jeeves and his well-meaning but hapless employer,
Bertie Wooster. With wit and humor, P. G. Wodehouse crafts a world where
Jeeves's quick thinking and clever schemes save Bertie from one humorous
misadventure after another. This book is a masterpiece of British comedy,
filled with laughter, wit, and the classic antics of a beloved duo.
</p>
</div>
<div class="hero-banner has-before">
<img
src="./assets/images/comedy.jpg"
alt="Comedy Book Cover"
class="w-100"
/>
</div>
</div>
<!-- True Crime Genre Section -->
<div class="genre-section" id="true-crime">
<div class="hero-banner has-before">
<img
src="./assets/images/true crime.jpg"
alt="True Crime Book Cover"
class="w-100"
/>
</div>
<div class="genre-content">
<h2 class="genre-title">Who Killed Jane Stanford?</h2>
<span style="font-size:5rem;filter: grayscale(100%); float: right;">🕵</span>
<p class="book-author">by Richard White</p>
<p class="book-genre">Top True Crime Book</p>
<p class="book-description">
"Who Killed Jane Stanford?" dives deep into the mysterious and still-unsolved
case surrounding the death of Jane Stanford, co-founder of Stanford University.
Richard White meticulously examines the strange events and complex relationships
that preceded her sudden poisoning, revealing a tangled web of suspects, secrets,
and lies. This gripping true-crime narrative explores corruption, power, and
the lengths people will go to protect their own interests.
</p>
</div>
</div>
<!-- Philosophy Genre Section -->
<div class="genre-section" id="philosophy">
<div class="genre-content">
<h2 class="genre-title">Meditations</h2>
<span style="font-size:5rem;filter: grayscale(100%); float: right;">📜</span>
<p class="book-author">by Marcus Aurelius</p>
<p class="book-genre">Classic Philosophy Book</p>
<p class="book-description">
"Meditations" by Marcus Aurelius is a profound reflection on life, virtue, and the
nature of existence. Written by the Roman emperor as personal notes, it delves into
stoic philosophy, offering timeless insights into resilience, discipline, and inner
peace. This work serves as a guide for those seeking to live with purpose, align
with natural order, and rise above life's challenges with wisdom and calm.
</p>
</div>
<div class="hero-banner has-before">
<img
src="./assets/images/philopsphy.jpg"
alt="Philosophy Book Cover"
class="w-100"
/>
</div>
</div>
</div>
</body>
</html>
<footer class="ff">
<div class="foot-top">
<div class="foot-left">
<div class="desc">
<div class="SwapReads"><a href="#" class="logo">SwapReads</a></div>
<div>
<p class="description">
SwapReads.com is the ultimate destination for book lovers seeking to swap and discover new literary gems.
Connect with fellow enthusiasts, exchange your favorite reads, and embark on exciting new adventures in
the world of literature—all on one convenient platform. Join us and dive into a universe of endless possibilities!
</p>
</div>
</div>
</div>
<div class="foot-middle">
<h2 style="margin-left: 2rem; margin-top: 2.75rem;">Quick Links</h2>
<div id="quicklinks" style="display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem;">
<div>
<ul style="list-style: none; padding: 0;">
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-home" style="color: #374151; margin-right: 4px;"></i>
<a href="./index.html#home" style="color: #374151; text-decoration: none;">Home</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-book" style="color: #374151; margin-right: 4px;"></i>
<a href="./index.html#benefits" style="color: #374151; text-decoration: none;">Benefits</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-globe" style="color: #374151; margin-right: 4px;"></i>
<a href="./index.html#chapters" style="color: #374151; text-decoration: none;">Literary</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-dollar-sign" style="color: #374151; margin-right: 4px;"></i>
<a href="./index.html#pricing" style="color: #374151; text-decoration: none;">Pricing</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-bookmark" style="color: #374151; margin-right: 4px;"></i>
<a href="./assets/html/bookrecommend.html" style="color: #374151; text-decoration: none;">Recommend</a>
</li>
</ul>
</div>
<div>
<ul style="list-style: none; padding: 0;">
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-exchange-alt" style="color: #374151; margin-right: 4px;"></i>
<a href="./assets/html/booklistswap.html" style="color: #374151; text-decoration: none;">Swap</a>
</li>
<li class="foot-quick" style="color: #374151; display: flex; align-items: center; margin-bottom: 0.75rem;">
<i class="fas fa-file-pdf" style="color: #374151; margin-right: 4px;"></i>
<a href="./assets/html/freeBooks.html" style="color: #374151; text-decoration: none;">E-Book</a>
</li>