-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathindex.html
More file actions
1244 lines (1165 loc) · 67 KB
/
index.html
File metadata and controls
1244 lines (1165 loc) · 67 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
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">
<link rel="shortcut icon" href="icons/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" />
<link rel="stylesheet" href="index.css" />
<script defer src="./js/typewriterEffect.js"></script>
<script defer src="./js/bookSearch.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/ee27ae787a.js" crossorigin="anonymous"></script>
<title>BookCase</title>
</head>
<body class="day">
<div id="loading">
<img id="loading-image" width="100%" height="100%"
src="https://cdn.dribbble.com/users/149180/screenshots/3208433/media/69be039cf606f6fe7ad8d1975306814e.gif"
alt="Loading..." />
</div>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand navTitle" href="index.html">
<img height="10%" width="20%" src="icons/book.png">
BookCase
</a>
<div class="color-switcher">
<input type="checkbox" id="color-switch" />
<span class="color-switch-span">
<i class="fa-solid fa-moon"></i>
<i class="fa-solid fa-sun"></i>
</span>
</div>
<button aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"
class="navbar-toggler" data-target="#navbarSupportedContent" data-toggle="collapse" type="button"><span
class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item itemNav">
<a class="nav-link" href="#header">Home</a>
</li>
<li class="nav-item itemNav">
<a class="nav-link" href="#gallery-title">BookCase</a>
</li>
<li class="nav-item itemNav">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item itemNav">
<a class="nav-link" href = "mailto:officialvk02@gmail.com">Contact Us</a>
</li>
</ul>
</div>
</nav><!-- Header Section -->
<section>
<div class="jumbotron text-center " id="header">
<h2 class="display-1" style="color: #ffff ; ">
<span id="typewriter" data-text="Book Case"></span>
<span class="cursor"></span>
</h2>
</section>
</div>
</div><!-- Gallery -->
<div id="gallery-title"></div>
<div class="gallery-div" id="">
<h1 class="gallery-head day" id="gallery1">
Book Gallery
</h1>
</div>
<div>
<p class="lead day">We all love Books, don't we? Go ahead and share your favourite with us!</p>
<!-- <a href="#gallery-title"><i class="fas fa-chevron-down fa-6x gallery-icon" id="icon1"></i></a> -->
</div>
<!-- Search Bar start -->
<div class="input-group">
<div class="form-outline">
<input id="search-input" type="search" class="form-control" placeholder="Search by book title"
onkeyup="if (event.keyCode == 13) { titleSearch(); return false; }" />
<!-- keyCode 13 is Enter key here -->
<span id="search-result"></span>
</div>
</div>
<!-- Search Bar end -->
<section id="gallery">
<div class="container">
<div class="row">
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="RDPD" class="card-img-top" src="https://m.media-amazon.com/images/I/81bsw6fnUiL.jpg">
<div class="card-body">
<div>
<h5 class="card-title">Rich Dad Poor Dad</h5>
<p class="card-text">Rich Dad Poor Dad is a 1997 book written by Robert T. Kiyosaki and Sharon Lechter. It
advocates the importance of financial literacy, financial independence and building wealth through
investing in assets, real estate investing, starting and owning businesses, as well as increasing one's
financial intelligence.</p>
</div>
<a href="https://github.com/vishaaal/" class="btn btn-outline-danger btn-sm">Contributed by -
vishaaal</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/71X1p4TGlxL.jpg" alt="" />
<div class="card-body">
<div>
<h5 class="card-title">The Lost Symbol</h5>
<p class="card-text">The Lost Symbol is best-selling author Dan Brown's third thriller novel following the
life of symbologist Robert Langdon as he works to solve the mystery behind the disappearance of his
mentor, Peter Solomon, whose severed hand is found in the Capitol Building in Washington DC during a
Smithsonian fundraiser.</p>
</div>
<a href="https://github.com/sibayanmisra2002" class="btn btn-outline-danger btn-sm">Contributed by -
sibayanmisra2002</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/91y5XODFZ+L.jpg" alt="" />
<div class="card-body">
<h5 class="card-title">The Diary of a young girl</h5>
<p class="card-text">The Diary of a Young Girl, also known as The Diary of Anne Frank, is a book of the writings from the Dutch-language diary kept by Anne Frank while she was in hiding for two years with her family during the Nazi occupation of the Netherlands. Anne Frank died of typhus in the Bergen-Belsen concentration camp in 1945. </p>
<a
href="https://github.com/soumikbaksi18"
class="btn btn-outline-danger btn-sm"
>Contributed by - Soumik Baksi</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://images-na.ssl-images-amazon.com/images/I/61kO3GprMnL.jpg" alt="" />
<div class="card-body">
<h5 class="card-title">Angels and Demons</h5>
<p class="card-text">Angels & Demons is a 2000 bestselling mystery-thriller novel written by American author Dan Brown and published by Pocket Books. Angels & Demons shares many stylistic literary elements with its sequels, such as conspiracies of secret societies, a single-day time frame, and the Catholic Church. Ancient history, architecture, and symbology are also heavily referenced throughout the book. </p>
<a
href="https://github.com/soumikbaksi18"
class="btn btn-outline-danger btn-sm"
>Contributed by - Soumik Baksi</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://i.pinimg.com/originals/36/07/2b/36072b092eef27d0f5a11a480147e0d2.jpg" alt="noimage" />
<div class="card-body">
<h5 class="card-title">The Songs of Trees</h5>
<p class="card-text">author of the Pulitzer Prize finalist The Forest Unseen visits with nature s most magnificent networkers trees
David Haskell s award-winning The Forest Unseen won acclaim for eloquent writing and deep engagement with the natural world. Now, Haskell brings his powers of observation to the biological networks that surround all species, including humans.
Haskell repeatedly visits a dozen trees around the world, exploring the trees connections with webs of fungi, bacterial communities, cooperative and destructive animals, and other plants. An Amazonian ceibo tree reveals the rich ecological turmoil of the tropical forest, along with threats from expanding oil fields. Thousands of miles away, the roots of a balsam fir in Canada survive in poor soil only with the help of fungal partners. These links are nearly two billion years old: the fir s roots cling to rocks containing fossils of the first networked cells. </p>
<a
href="https://github.com/mahalakshmikutcharlapati"
class="btn btn-outline-danger btn-sm"
>Contributed by - mahalakshmikutcharlapati</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="RDPD" class="card-img-top"
src="https://m.media-amazon.com/images/I/51mN3bY0JjL._SX332_BO1,204,203,200_.jpg">
<div class="card-body">
<div>
<h5 class="card-title">The Subtle Art of Not Giving a F*ck</h5>
<p class="card-text">The Subtle Art of Not Giving a F**k is his antidote to the coddling,
let’s-all-feel-good mindset that has infected modern society and spoiled a generation,
rewarding them with gold medals just for showing up.</p>
</div>
<a href="https://github.com/Ayushi-810" class="btn btn-outline-danger btn-sm">Contributed by -
AYUSHI SINGH</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="New Moon" class="card-img-top" src="https://m.media-amazon.com/images/I/81rpWBnoCBL.jpg">
<div class="card-body">
<h5 class="card-title">New Moon</h5>
<p class="card-text">New Moon (novel) New Moon (stylized as new moon) is a 2006 romantic fantasy novel
by author Stephenie Meyer, and is the second novel in the Twilight series.
The novel continues the story of Bella Swan and vampire Edward Cullen 's relationship.</p>
<a href="https://github.com/Vaibhavi112001" class="btn btn-outline-danger btn-sm">Contributed by -
Vaibhavi</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Alchemist" class="card-img-top" src="https://m.media-amazon.com/images/I/71aFt4+OTOL.jpg">
<div class="card-body">
<div>
<h5 class="card-title">The Alchemist</h5>
<p class="card-text">The Alchemist is a novel by Brazilian author Paulo Coelho which was first published
in 1988. Originally written in Portuguese, it became a widely translated international bestseller.</p>
</div>
<a href="https://github.com/vishaaal/" class="btn btn-outline-danger btn-sm">Contributed by -
vishaaal</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/51-uspgqWIL._AC_SY780_.jpg"
alt="Atomic Habits" />
<div class="card-body">
<h5 class="card-title">Atomic Habits</h5>
<p class="card-text">
of the best books, I have ever read. Concluding this, then this book taught me
how small changes can change your life.</p>
<a href="https://github.com/hackbysarthak03" class="btn btn-outline-danger btn-sm">Contributed by -
Sarthak Vishwakarma</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/410ruFcxtmL._SX324_BO1,204,203,200_.jpg"
alt="" />
<div class="card-body">
<div>
<h5 class="card-title">Grapes of Wrath</h5>
<p class="card-text">The Grapes of Wrath is considered by many to be the Great American Novel. It won the
Pulitzer Prize in 1940, the National Book Award in 1939, and was cited as one of the primary reasons for
Steinbeck's Nobel Prize win in 1962</p>
</div>
<a href="https://github.com/sonalirao14" class="btn btn-outline-danger btn-sm">Contributed by -
Sonali Rao</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/71as0QgjDaL.jpg"
alt="" />
<div class="card-body">
<div>
<h5 class="card-title">2 states</h5>
<p class="card-text">2 States: The Story of My Marriage is autobiographical with only names changed. The story is about a couple Krish and Ananya, who hail from two states of India, Punjab and Tamil Nadu, respectively, who are deeply in love and want to marry. It is narrated from a first-person point of view in a humorous tone, often taking digs at both Tamil and Punjabi cultures.</p>
</div>
<a href="https://github.com/soumikbaksi18" class="btn btn-outline-danger btn-sm">Contributed by -
Soumik Baksi</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="RDPD" class="card-img-top" src="https://notevenpast.org/wp-content/uploads/2011/11/p2i_book.jpg">
<div class="card-body">
<div>
<h5 class="card-title">A Passage to India</h5>
<p class="card-text">E. M. Forster’s A Passage to India, published in 1924, tells a story of the power of
colonialism, the tension between spirituality and morality, and the inescapability of evil. Forster
wrote this novel after traveling to India in 1912 and volunteering in Egypt during World War I.</p>
</div>
<a href="https://github.com/sibayanmisra2002" class="btn btn-outline-danger btn-sm">Contributed by -
sibayanmisra2002</a>
</div>
</div>
</div>
<!--Start from here-->
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/310MEoDkSTL.jpg" />
<div class="card-body">
<div>
<h5 class="card-title">Unlocked: The Power of You - “A must-read for anyone who wants to unleash their
full potential.”</h5>
<p class="card-text">“Unlocked: The Power of You is a must read for any professional to truly unleash
hidden potential.
Written in clear, easily understandable language, and extremely important to provide hope for a better
future through all of our individual strength.”.</p>
</div>
<a href="https://github.com/viveksondhiya" class="btn btn-outline-danger btn-sm">Contributed by - Vivek
Sondhiya</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/91nTClkODkL.jpg" />
<div class="card-body">
<h5 class="card-title"> for Alaska</h5>
<p class="card-text">Looking for Alaska deals with the universal questions of love, friendship, truth, and
the gray areas in between.
This story is about Miles,
who attempts to reinvent himself in a new school,
with new friends and activities, and how his meeting with Alaska Young,
a witty and carefree girl, changed his life.</p>
<a href="https://github.com/Yoogiitaa" class="btn btn-outline-danger btn-sm">Contributed by -
Yoogiitaa</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/81zqVhvbHbL.jpg" alt="Norwegian Woods" />
<div class="card-body">
<h5 class="card-title">Norwegian Woods</h5>
<p class="card-text">Norwegian Wood is a 1987 novel by Japanese author Haruki Murakami. The novel is a
nostalgic story of loss and burgeoning sexuality. It is told from the first-person perspective of Toru
Watanabe, who looks back on his days as a college student living in Tokyo. Through Watanabe's
reminiscences, readers see him develop relationships with two very different women—the beautiful yet
emotionally troubled Naoko, and the outgoing, lively Midori.
This novel is set in late 1960s Tokyo during a period when Japanese students, like those of many other
nations, were protesting against the established order.</p>
<a href="https://github.com/subhagataa" class="btn btn-outline-danger btn-sm">Contributed by - Subhagata
Sardar</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/714FbKtXS+L.jpg"
alt="The Power of Now" />
<div class="card-body">
<div>
<h5 class="card-title">The Power of Now</h5>
<p class="card-text">The Power of Now: A Guide to Spiritual Enlightenment is a book by Eckhart Tolle. It
presents itself as a discussion about how people interact with themselves and others. The concept of
self reflection and presence in the moment are presented along with simple exercises for the achievement
of its principles</p>
</div>
<a href="https://github.com/aaakashkumar" class="btn btn-outline-danger btn-sm">Contributed by -
Akash</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/51RQ5km2gkL._AC_SY780_.jpg"
alt="The Secret" />
<div class="card-body">
<div>
<h5 class="card-title">The Secret</h5>
<p class="card-text">The Secret is a self-help book by Rhonda Byrne that explains how the law of
attraction, which states that positive energy attracts positive things into your life, governs your
thinking and actions, and how you can use the power of positive thinking to achieve anything you can
imagine.</p>
</div>
<a href="https://github.com/soham-pagi" class="btn btn-outline-danger btn-sm">Contributed by -
Soham Pagi</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/41yT41SG23L._SX294_BO1,204,203,200_.jpg"
alt="The Da Vinci Code" />
<div class="card-body">
<div>
<h5 class="card-title">The Da Vinci Code</h5>
<p class="card-text">The Da Vinci Code is a 2003 mystery thriller novel by Dan Brown.The Da Vinci Code
follows symbologist Robert Langdon and cryptologist Sophie Neveu after a murder in the Louvre Museum in
Paris causes them to become involved in a battle between the Priory of Sion and Opus Dei over the
possibility of Jesus Christ and Mary Magdalene having had a child together.</p>
</div>
<a href="https://github.com/shwet0710" class="btn btn-outline-danger btn-sm">Contributed by -
Shwet Shukla</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://bc-img.s3.ap-south-1.amazonaws.com/images/cover/762/9789389152234.jpg" alt="NO LIMITS" />
<div class="card-body">
<div>
<h5 class="card-title">NO LIMITS</h5>
<p class="card-text">NO LIMITS is great self-help book written by a
renowned entrepreneur Mukesh Bansal. It takes us through the journey of great living through the art and
science of high performance.</p>
</div>
<a href="https://github.com/Devrajsinh03" class="btn btn-outline-danger btn-sm">Contributed by -
Devrajsinh03</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1469119638l/31190419._SY475_.jpg" />
<div class="card-body">
<div>
<h5 class="card-title">THE RICHEST ENGINEER - A Story That Will Unravel The Secrets of the Rich</h5>
<p class="card-text">Its a book on Personal Finance and shows how anyone; no matter where they are in life
now can become a millionaire by taking a few simple and painless steps.</p>
</div>
<a href="https://github.com/jitesh1495" class="btn btn-outline-danger btn-sm">Contributed by - Jitesh
Kumar Verma</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://upload.wikimedia.org/wikipedia/en/d/d5/MitchAlbom_TheFivePeopleYouMeetInHeaven.jpg" alt="" />
<div class="card-body">
<div>
<h5 class="card-title">The Five People You Meet in Heaven</h5>
<p class="card-text">The Five People You Meet In Heaven is a 2003 novel by Mitch Albom. It follows the
life and death of a ride mechanic named Eddie who is killed in an amusement park accident and sent to
heaven, where he encounters five people who had a significant impact on him while he was alive. It was
published by Hyperion and remained on the New York Times Best Seller list for 95 weeks.</p>
</div>
<a href="https://github.com/dhrupad17" class="btn btn-outline-danger btn-sm">Contributed by - dhrupad17
</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/P/0345472322.01._SCLZZZZZZZ_SX500_.jpg"
alt="" />
<div class="card-body">
<div>
<h5 class="card-title">Mindset: The New Psychology of Success</h5>
<p class="card-text">After decades of research, world-renowned Stanford University psychologist Carol S.
Dweck, Ph.D., discovered a simple but groundbreaking idea: the power of mindset.
In this brilliant book, she shows how success in school, work, sports, the arts, and almost every area
of human endeavor can be dramatically influenced by how we think about our talents and abilities.
People with a fixed mindset—those who believe that abilities are fixed—are less likely to flourish than
those with a growth mindset—those who believe that abilities can be developed.
Mindset reveals how great parents, teachers, managers, and athletes can put this idea to use to foster
outstanding accomplishment.</p>
</div>
<a href="https://github.com/akash190104" class="btn btn-outline-danger btn-sm">Contributed by - Akash
Kundu</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/41cHZcaspvL._SX395_BO1,204,203,200_.jpg"
alt="" />
<div class="card-body">
<div>
<h5 class="card-title">1984</h5>
<p class="card-text">1984 is a dystopian novella by George Orwell published in 1949, which follows the
life of Winston Smith, a low ranking member of 'the Party', who is frustrated by the omnipresent eyes of
the party, and its ominous ruler Big Brother</p>
</div>
<a href="https://github.com/samwinp" class="btn btn-outline-danger btn-sm">Contributed by - Samwin
Pereira</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/61Iz2yy2CKL.jpg"
alt="The Monk Who Sold His Ferrari" />
<div class="card-body">
<div>
<h5 class="card-title">The Monk Who Sold His Ferrari</h5>
<p class="card-text">The Monk Who Sold His Ferrari is a self-help book by Robin Sharma, a writer and
motivational speaker. The book is a business fable derived from Sharma's personal experiences after
leaving his career as a litigation lawyer at the age of 25.</p>
</div>
<a href="https://github.com/soham-pagi" class="btn btn-outline-danger btn-sm">Contributed by -
Noopur Dangui</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/51T8OXMiB5L._SY346_.jpg" alt="IKIGAI" />
<div class="card-body">
<div>
<h5 class="card-title">IKIGAI</h5>
<p class="card-text">Ikigai is a Japanese concept that means your 'reason for being. ' 'Iki' in Japanese
means 'life,' and 'gai' describes value or worth. Your ikigai is your life purpose or your bliss. It's
what brings you joy and inspires you to get out of bed every day</p>
</div>
<a href="https://github.com/saransh484" class="btn btn-outline-danger btn-sm">Contributed by -
saransh484</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="DES" class="card-img-top"
src="https://m.media-amazon.com/images/I/41oYp387k8L._SY264_BO1,204,203,200_QL40_FMwebp_.jpg">
<div class="card-body">
<div>
<h5 class="card-title">Do Epic Shit</h5>
<p class="card-text">A great book by Ankur Warikoo that teaches about life</p>
</div>
<a href="https://github.com/vishaaal/" class="btn btn-outline-danger btn-sm">Contributed by -
Abhishek</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/51ObA75bY9L._SX332_BO1,204,203,200_.jpg"
alt="Mindset" />
<div class="card-body">
<div>
<h5 class="card-title">The Art and Science of Personality Development </h5>
<p class="card-text">Drawing on state-of-the-art personality and developmental research, this book
presents a new and broadly integrative theory of how people come to be who they are over the life
course. </p>
</div>
<a href="https://github.com/anjali6387" class="btn btn-outline-danger btn-sm">Contributed by - Anjali
Gupta</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/P/B00JW44IAI.01._SCLZZZZZZZ_SX500_.jpg"
alt="" />
<div class="card-body">
<div>
<h5 class="card-title">The Autobiography of a Yogi</h5>
<p class="card-text">Autobiography of a Yogi is at once a beautifully written account of an exceptional
life and
a profound introduction to the ancient science of Yoga and its time-honored tradition of meditation.
Profoundly inspiring, it is at the same time vastly entertaining, warmly humorous and filled with
extraordinary personages.</p>
</div>
<a href="https://github.com/CoderDebjeet" class="btn btn-outline-danger btn-sm">Contributed by -
CoderDebjeet</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://m.media-amazon.com/images/W/IMAGERENDERING_521856-T1/images/I/417KWv-EtEL._SX322_BO1,204,203,200_.jpg"
alt="Psychology of Money" />
<div class="card-body">
<div>
<h5 class="card-title">The Psychology of Money</h5>
<p class="card-text">In The Psychology of Money, award-winning author Morgan Housel shares 19 short
stories exploring the strange ways people think about money and teaches you how to make better sense of
one of most important topics of life.</p>
</div>
<a href="https://github.com/pankaj892" class="btn btn-outline-danger btn-sm">Contributed by -
Pankaj892</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://m.media-amazon.com/images/I/41ryLzAQapL._SY264_BO1,204,203,200_QL40_FMwebp_.jpg" alt="" />
<div class="card-body">
<div>
<h5 class="card-title">Angels And Demons</h5>
<p class="card-text">A brilliant page turner for readers who love fast paced storyline and drama. Angels
and Demons is one of the most amazing thrillers by Dan Brown. The book follows the life of Robert
Langdon who is an iconology professor and is set in the cobbled street
of Europe and the Vatican City.</p>
</div>
<a href="https://github.com/tantric17" class="btn btn-outline-danger btn-sm">Contributed by -
tantric17</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://i.postimg.cc/hGBQGp61/Immortals-Of-Meluha.jpg" alt="" />
<div class="card-body">
<div>
<h5 class="card-title">The Immortals of Meluha</h5>
<p class="card-text">The story is set in the land of Meluha and starts with the arrival of the Shiva. The
Meluhans believe that Shiva is their fabled saviour Neelkanth. Shiva decides to help the Meluhans in
their war against the Chandravanshis, who had joined forces with a cursed Nagas; however, during his
journey and the fight that ensues, Shiva learns how his choices actually reflect who he aspires to be
and how they lead to dire consequences.</p>
</div>
<a href="https://github.com/VedVaghela" class="btn btn-outline-danger btn-sm">Contributed by -
VedVaghela</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/611OWa8x+WL.jpg" alt="" />
<div class="card-body">
<div>
<h5 class="card-title">How to Win Friends and Influence People</h5>
<p class="card-text">The core idea is that you can change other people's behavior simply by changing your
own. It teaches you the principles to better understand people, become a more likable person, improve
relationships, win others over, and influence behavior through leadership.
<b>All Time Must Read Book</b>
</p>
</div>
<a href="https://github.com/0xcyberpj/" class="btn btn-outline-danger btn-sm">Contributed by -P4UL</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/81U3+6n3s1L.jpg" alt="" />
<div class="card-body">
<div>
<h5 class="card-title">The Rudest Book Ever</h5>
<p class="card-text">Laying out clear principles, YouTube megastar Gangwar shows you how to deal with the
shit that has happened to you, is happening to you and will happen to you. A refreshing, easy-to-read,
and relatable guide, The Rudest Book Ever will make you rethink everything you? ve been taught.</p>
</div>
<a href="https://github.com/AdityaMore7000" class="btn btn-outline-danger btn-sm">Contributed by -
AdityaMore7000</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="And the Mountains Echoed" class="card-img-top"
src="https://m.media-amazon.com/images/I/41lQDRWYdvL.jpg">
<div class="card-body">
<h5 class="card-title">And the Mountains Echoed</h5>
<p class="card-text">Third in the series of some fantastic piece of writing by Hosseini, this book traces
the journeys of a brother and sister through years. A story of love, separation, friendship, compassion,
exile, memory and the troubled history of Afghanistan, spanning three continents and 60 years</p>
<a href="https://github.com/Sourabh06" class="btn btn-outline-danger btn-sm">Contributed by -
Sourabh</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://rukminim1.flixcart.com/image/416/416/kqidx8w0/book/i/7/a/the-adventures-of-sherlock-holmes-original-imag4gdrp8gnz7vw.jpeg?q=70"
alt="The Complete Adventures of Sherlock Holmes" />
<div class="card-body">
<div>
<h5 class="card-title">The Complete Adventures of Sherlock Holmes</h5>
<p class="card-text">“There is nothing more deceptive than an obvious fact.”He has no knowledge of
literature, philosophy or astronomy. But his chemistry is strong, anatomy is explicit, remembers every
horror committed in detail and is completely aware of the British Law.Meet Sherlock Holmes, the ruthless
and self-disciplined detective who takes up every case as an intellectual challenge.</p>
</div>
<a href="https://github.com/anwesha2240" class="btn btn-outline-danger btn-sm">Contributed by -
Anwesha Saha</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/71sH3vxziLL.jpg" alt="" />
<div class="card-body">
<div>
<h5 class="card-title">Harry Potter and the Deathly Hallows</h5>
<p class="card-text">Harry Potter and the Deathly Hallows is a fantasy novel written by British author J. K. Rowling and the seventh and final novel of the main Harry Potter series. It was released on 21 July 2007 in the United Kingdom by Bloomsbury Publishing, in the United States by Scholastic, and in Canada by Raincoast Books. The novel chronicles the events directly following Harry Potter and the Half-Blood Prince (2005) and the final confrontation between the wizards Harry Potter and Lord Voldemort.</p>
</div>
<br>
<a href="https://github.com/kishanlalchoudhary" class="btn btn-outline-danger btn-sm">Contributed by -
kishanlalchoudhary</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/51zCkUXeUML.jpg" alt="" />
<div class="card-body">
<h5 class="card-title">The Power of your Subconscious Mind</h5>
<p class="card-text">This book can bring to your notice the innate power that the sub-conscious holds. We
have some traits which seem like habits, but in reality these are those traits which are directly
controlled by the sub-conscious mind, vis-à-vis your habits or your routine can be changed if you can
control and direct your sub-conscious mind positively.</p>
<a href="https://github.com/Shravan773" class="btn btn-outline-danger btn-sm">Contributed by -
Shravan773</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/41QlgiuLl5L.jpg" alt="THE KITE RUNNER" />
<div class="card-body">
<div>
<h5 class="card-title">The Kite Runner</h5>
<p class="card-text">Afghanistan, 1975: Twelve-year-old Amir is desperate to win the local kite-fighting
tournament and his loyal friend Hassan promises to help him. But neither of the boys can foresee what
will happen to Hassan that afternoon, an event that is to shatter their lives. After the Russians invade
and the family is forced to flee to America, Amir realises that one day he must return to Afghanistan
under Taliban rule to find the one thing that his new world cannot grant him: redemption.</p>
</div>
<a href="https://github.com/AdityaSankar23" class="btn btn-outline-danger btn-sm">Contributed by -
Aditya Sankar Bhattacharya</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://d1w7fb2mkkr3kw.cloudfront.net/assets/images/content/Fire_Blood_small.jpeg" alt="" />
<div class="card-body">
<h5 class="card-title">Fire and Blood</h5>
<p class="card-text">Fire and Blood focuses on the history of the Targaryen family from 300 years before
the setting of the first GOT book. They are the first family after Westeros was united and brought under
one ruler. We follow the rise and the fall of the family that set up the foundation for the rest of
Westeros.</p>
<a href="https://github.com/Op-panda" class="btn btn-outline-danger btn-sm">Contributed by - Amit
Pandey</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/51kA-Upq61L._SX325_BO1,204,203,200_.jpg"
alt="" />
<div class="card-body">
<h5 class="card-title">One Indian Girl</h5>
<p class="card-text">Moving to the book then, One Indian Girl is a story of a girl called Radhika Mehta
who is a hot-shot banker working in the prestigious Investment Bank, Goldman Sachs. Radhika, who once
was as nerdy as one can be, is now arranged to get married to Brijesh Gulati and has just arrived for
her destination wedding in Goa.
.</p>
<a href="https://github.com/Happy2411" class="btn btn-outline-danger btn-sm">Contributed by - Happy
Singh</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/718wzK6mymL.jpg"
alt="Think And Grow Rich" />
<div class="card-body">
<h5 class="card-title">Think and Grow Rich</h5>
<p class="card-text">A text full of anecdotes each of which offers a lesson in how one can use the
power of their mind to manifest the reality they truly desire. This book is definite classic and is
really focused on how to manage oneself in order to enjoy a productive and successful life. </p>
<a href="https://github.com/priyadarshni-jha" class="btn btn-outline-danger btn-sm">Contributed by -
Priyadarshni Jha</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1481901787i/33398187.jpg"
alt="Teenage Diaries: The Days That Were" />
<div class="card-body">
<div>
<h5 class="card-title">Teenage Diaries: The Days That Were</h5>
<p class="card-text">Told from the eyes of an Indian middle-class teenager, this story will make you
wonder what you would have done if you were named Ghanshyam and were born a pessimistic nerd, while your
optimistic best friend believed in unicorns and utopia! And to add to your woes, what if you fell in
love with the most beautiful girl of your school? Wouldn't you then wait for a miracle to happen?</p>
</div>
<a href="https://github.com/cpriyam49" class="btn btn-outline-danger btn-sm">Contributed by -
Priyam Chakraborty</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/71k7V0QvcdL._AC_UY218_.jpg" alt="" />
<div class="card-body">
<h5 class="card-title">The Courage to be dislike</h5>
<p class="card-text">How to free yourself, change your life and achieve real happiness.</p>
<a href="https://github.com/prachi0011" class="btn btn-outline-danger btn-sm">Contributed by - Prachi Agrawal</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://coolerinsights.com/wp-content/uploads/2019/04/Think-and-Grow-Rich-Book-Cover.jpg"
alt="Think and Grow Rich" />
<div class="card-body">
<div>
<h5 class="card-title">Think And Grow Rich</h5>
<p class="card-text">Think and Grow Rich was written in 1937 by Napoleon Hill, promoted as a personal development and self-improvement book. Hill writes that he was inspired by a suggestion from business magnate and later-philanthropist Andrew Carnegie. Think and Grow Rich.</p>
</div>
<a href="https://github.com/Parth4git" class="btn btn-outline-danger btn-sm">Contributed by -
Parth Dwivedi</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://m.media-amazon.com/images/I/51oOEob0QWL._SY264_BO1,204,203,200_QL40_FMwebp_.jpg"
alt="God's War" />
<div class="card-body">
<h5 class="card-title">God's War</h5>
<p class="card-text">The story of how a group of warriors, driven by faith, greed and wanderlust, carved
out new Christian-ruled states in the Middle East is one of the most extraordinary of all epics. The
crusaders' stunning initial success started a sequence of great Crusades, each with its own story, that
fundamentally shaped the Christian and Muslim worlds for two centuries, until the last Crusader castles
were finally expunged. The energy and commitment that sent army after army into the eastern
Mediterranean also led to the invasion and conversion of Central and Baltic Europe, Spain, Portugal, the
destruction of the Cathars in Provence and the settlement of America.</p>
<a href="https://github.com/AnkushRC2001" class="btn btn-outline-danger btn-sm">Contributed by -
Ankush Roy Chowdhury</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/41SxL78DpvL.jpg" alt="" />
<div class="card-body">
<h5 class="card-title">21 lessons for the 21st century</h5>
<p class="card-text">In a world deluged by irrelevant information, clarity is power. Censorship works not
by blocking the flow of information, but rather by flooding people with disinformation and distractions.
21 Lessons for the 21st Century cuts through these muddy waters and confronts some of the most urgent
questions on today’s global agenda.</p>
<a href="https://github.com/codedoc7" class="btn btn-outline-danger btn-sm">
Contributed by - Keshav</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="The Code Book" class="card-img-top" src="https://m.media-amazon.com/images/I/51kQWMG+ZzL.jpg">
<div class="card-body">
<h5 class="card-title">The Code Book: The Science of Secrecy from Ancient Egypt to Quantum Cryptography
</h5>
<p class="card-text">In his first book since the bestselling Fermat's Enigma, Simon Singh offers the first
sweeping history of encryption, tracing its evolution and revealing the dramatic effects codes have had
on wars, nations, and individual lives.</p>
<a href="https://github.com/mnaiwrit52" class="btn btn-outline-danger btn-sm">Contributed by -
Naiwrit Mullick</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://d1w7fb2mkkr3kw.cloudfront.net/assets/images/content/Fire_Blood_small.jpeg" alt="" />
<div class="card-body">
<h5 class="card-title">Fire and Blood</h5>
<p class="card-text">Fire and Blood focuses on the history of the Targaryen family from 300 years before
the setting of the first GOT book. They are the first family after Westeros was united and brought under
one ruler. We follow the rise and the fall of the family that set up the foundation for the rest of
Westeros.</p>
<a href="https://github.com/miraz-mondal" class="btn btn-outline-danger btn-sm">Contributed by - Miraz Mondal</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/41wKll7ITyL._SX362_BO1,204,203,200_.jpg" alt="" />
<div class="card-body">
<div>
<h5 class="card-title">Who Will Cry When You Die?</h5>
<p class="card-text">Life Lessons From The Monk Who Sold His Ferrari Do You Feel that life is slipping by so fast that you might never get the chance to live with the meaning, happiness and joy you know you deserve? If so, then this book will be the guiding light that leads you to a brilliant new way of living. In this easy-to-read yet wisdom-rich manual, the author offers 101 simple solutions to life’s most complex problems, ranging from a little-known method for beating stress and worry to a powerful way to enjoy the journey while you create a legacy that lasts. “When You Were Born, You Cried While The World Rejoiced. Live Your Life In Such A Way That When You Die, The World Cries While You Rejoice.” Ancient Sanskrit Saying</p>
</div>
<a
href="https://github.com/Shreya-Jash"
class="btn btn-outline-danger btn-sm"
>Contributed by - Shreya Jash</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://m.media-amazon.com/images/I/417ExARdRYL._SX384_BO1,204,203,200_.jpg" alt="" />
<div class="card-body">
<h5 class="card-title">Data Structures And Algorithms Made Easy</h5>
<p class="card-text">Narasimha Karumanchi is the founder of CareerMonk Publications and author of few books on data structures, algorithms, and design patterns. He was a software developer who has been both interviewer and interviewee over his long career. Most recently he worked for Amazon Corporation, IBM Software Labs, Mentor Graphics, and Microsoft. Narasimha holds an M.Tech. in computer science from IIT, Bombay, and B.Tech. from JNT university. He authored the following books which got translated to international languages: Chinese, Japanese, Korea and Taiwan. Also, around 58 international universities were using these books as reference for academic courses.</p>
<a
href="https://github.com/abhijais27"
class="btn btn-outline-danger btn-sm"
>Contributed by - Abhishek Jaiswal</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="The Code Book" class="card-img-top" src="https://m.media-amazon.com/images/I/81kUR2GPGNL.jpg">
<div class="card-body">
<h5 class="card-title">The Man Who Knew Too Much: A Detective, his unorthodox ways to solve mysterious
crimes and a tussle between Justice and his family</h5>
<p class="card-text">The Man Who Knew Too Much is a humorous story set in an army training camp. It
highlights the attitude of one of the trainees at the camp, Private Quelch, who has a habit of showing
off his knowledge in an attempt to outshine the other trainees in his batch.</p>
<a href="https://github.com/AmanAssassin" class="btn btn-outline-danger btn-sm">Contributed by -
Aman Maurya</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://upload.wikimedia.org/wikipedia/en/3/3a/Wings_of_Fire_by_A_P_J_Abdul_Kalam_Book_Cover.jpg"
alt="" />
<div class="card-body">
<h5 class="card-title">Wings of Fire</h5>
<p class="card-text">Wings of Fire, is the autobiography of the Missile Man of India and President of
India, Dr. A. P. J. Abdul Kalam. It was written by him and Arun Tiwari.</p>
<a href="https://github.com/Op-panda" class="btn btn-outline-danger btn-sm">Contributed by - Amit
Pandey</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="The Code Book" class="card-img-top" src="https://m.media-amazon.com/images/I/81+vsc3xbQL.jpg">
<div class="card-body">
<h5 class="card-title">Programming With C (SCHAUMS OUTLINES SERIES)</h5>
<p class="card-text">
This book follows a simplified way for solving problem. Through sample programs, it guides the readers
to comprehend the different situations in which a certain feature can be used. The book has been
developed based on the ANSI C standards. There is emphasis on designing clear, legible, modular and
efficient programs throughout the book.
</p>
<a href="https://github.com/deepaksy" class="btn btn-outline-danger btn-sm">Contributed by -
Deepak Suryawanshi</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top"
src="https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1610730335i/53086843.jpg"
alt="You've Reached Sam" />
<div class="card-body">
<h5 class="card-title">You've Reached Sam</h5>
<p class="card-text"> Dustin Thao's You've Reached Sam, a heartfelt novel about love and loss and what it
means to say goodbye.Seventeen-year-old Julie Clarke has her future all planned out―move out of her
small town with her boyfriend Sam, attend college in the city; spend a summer in Japan. But then Sam
dies. And everything changes. Heartbroken, Julie skips his funeral, throws out his belongings, and tries
everything to forget him. But a message Sam left behind in her yearbook forces memories to return.
</p>
<a href="https://github.com/roshan-byte" class="btn btn-outline-danger btn-sm">Contributed by -
Roshan Kumar</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">