-
Notifications
You must be signed in to change notification settings - Fork 243
/
index.html
1292 lines (1143 loc) · 57.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
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>
<!-- Required meta tags -->
<meta name="theme-color" content="#f2f2f2">
<meta name="msapplication-navbutton-color" content="#f2f2f2">
<meta name="apple-mobile-web-app-status-bar-style" content="#f2f2f2">
<meta name="og:title" content="AEC Library is a comprehensive library management system">
<meta name="og:description"
content="Designed for both large and small library systems, AEC Library is a comprehensive library management system. For managing circulation and stock, this is ideal for institutional, public, and digital libraries. In order to manage and automate the processing of even the largest of libraries, the AEC Library website was developed. According to the end user's requirements, the website is capable of managing Book Issues, Returns, and generating various Reports for Record-Keeping and Review purposes.">
<meta property="og:image" content="assets/logos/finalLogo.webp">
<meta name="og:type" content="library">
<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>AEC Library</title>
<link rel="icon" href="assets/logos/finalLogo.webp" type="image/x-icon">
<meta name="title" content="AEC Library is a comprehensive library management system">
<meta name="description"
content="Designed for both large and small library systems, AEC Library is a comprehensive library management system. For managing circulation and stock, this is ideal for institutional, public, and digital libraries. In order to manage and automate the processing of even the largest of libraries, the AEC Library website was developed. According to the end user's requirements, the website is capable of managing Book Issues, Returns, and generating various Reports for Record-Keeping and Review purposes.">
<meta name="keywords" content="AEC, library systems, library, digital libraries, books">
<!-- <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> -->
<meta name="language" content="English">
<meta name="author" content="AEC LIBRARY">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<!--Animation on scroll-->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous" />
<!-- Style CSS -->
<style>
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Source+Sans+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
</style>
<link rel="stylesheet" href="./assets/css/style.css" />
<!-- Title bar icon -->
<link rel="icon" href="./assets/logos/finalLogo.webp" type="image/x-icon">
<!-- Adding new font -> Playfair-display -->
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
<!--Adding AOS in it-->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<!--data table-->
<link rel="stylesheet" href="https://cdn.datatables.net/1.11.3/css/jquery.dataTables.min.css">
<script type="text/javascript" src="https://studio.alan.app/web/lib/alan_lib.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baloo+2&family=Merriweather:wght@300&display=swap" rel="stylesheet">
<!-- Audiobook css -->
<link rel="stylesheet" href="assets/css/audiobook.css">
<!-- Pop-up msg -->
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js" defer></script>
</head>
<body class="body-style">
<div class="bubbles">
<img src="./assets/images/bubble.webp" alt="bubble">
<img src="./assets/images/bubble.webp" alt="bubble">
<img src="./assets/images/bubble.webp" alt="bubble">
<img src="./assets/images/bubble.webp" alt="bubble">
<img src="./assets/images/bubble.webp" alt="bubble">
<img src="./assets/images/bubble.webp" alt="bubble">
<img src="./assets/images/bubble.webp" alt="bubble">
</div>
<!--Go to Top Button-->
<div id="topBtn" title="Go to Top">
<a href="#"><span class="fa fa-angle-up"></span></a>
</div>
<!--scroll bar feature addition-->
<div id="progressbar"></div>
<div id="scrollpath"></div>
<div id="percent"></div>
<!--scroll bar feature ends here-->
<!-- pre-loader -->
<div id="loading"></div>
<div class="preloader">
<div class="loader">
<div>
<ul>
<li>
<svg viewBox="0 0 90 120" fill="currentColor">
<path
d="M90,0 L90,120 L11,120 C4.92486775,120 0,115.075132 0,109 L0,11 C0,4.92486775 4.92486775,0 11,0 L90,0 Z M71.5,81 L18.5,81 C17.1192881,81 16,82.1192881 16,83.5 C16,84.8254834 17.0315359,85.9100387 18.3356243,85.9946823 L18.5,86 L71.5,86 C72.8807119,86 74,84.8807119 74,83.5 C74,82.1745166 72.9684641,81.0899613 71.6643757,81.0053177 L71.5,81 Z M71.5,57 L18.5,57 C17.1192881,57 16,58.1192881 16,59.5 C16,60.8254834 17.0315359,61.9100387 18.3356243,61.9946823 L18.5,62 L71.5,62 C72.8807119,62 74,60.8807119 74,59.5 C74,58.1192881 72.8807119,57 71.5,57 Z M71.5,33 L18.5,33 C17.1192881,33 16,34.1192881 16,35.5 C16,36.8254834 17.0315359,37.9100387 18.3356243,37.9946823 L18.5,38 L71.5,38 C72.8807119,38 74,36.8807119 74,35.5 C74,34.1192881 72.8807119,33 71.5,33 Z">
</path>
</svg>
</li>
<li>
<svg viewBox="0 0 90 120" fill="currentColor">
<path
d="M90,0 L90,120 L11,120 C4.92486775,120 0,115.075132 0,109 L0,11 C0,4.92486775 4.92486775,0 11,0 L90,0 Z M71.5,81 L18.5,81 C17.1192881,81 16,82.1192881 16,83.5 C16,84.8254834 17.0315359,85.9100387 18.3356243,85.9946823 L18.5,86 L71.5,86 C72.8807119,86 74,84.8807119 74,83.5 C74,82.1745166 72.9684641,81.0899613 71.6643757,81.0053177 L71.5,81 Z M71.5,57 L18.5,57 C17.1192881,57 16,58.1192881 16,59.5 C16,60.8254834 17.0315359,61.9100387 18.3356243,61.9946823 L18.5,62 L71.5,62 C72.8807119,62 74,60.8807119 74,59.5 C74,58.1192881 72.8807119,57 71.5,57 Z M71.5,33 L18.5,33 C17.1192881,33 16,34.1192881 16,35.5 C16,36.8254834 17.0315359,37.9100387 18.3356243,37.9946823 L18.5,38 L71.5,38 C72.8807119,38 74,36.8807119 74,35.5 C74,34.1192881 72.8807119,33 71.5,33 Z">
</path>
</svg>
</li>
<li>
<svg viewBox="0 0 90 120" fill="currentColor">
<path
d="M90,0 L90,120 L11,120 C4.92486775,120 0,115.075132 0,109 L0,11 C0,4.92486775 4.92486775,0 11,0 L90,0 Z M71.5,81 L18.5,81 C17.1192881,81 16,82.1192881 16,83.5 C16,84.8254834 17.0315359,85.9100387 18.3356243,85.9946823 L18.5,86 L71.5,86 C72.8807119,86 74,84.8807119 74,83.5 C74,82.1745166 72.9684641,81.0899613 71.6643757,81.0053177 L71.5,81 Z M71.5,57 L18.5,57 C17.1192881,57 16,58.1192881 16,59.5 C16,60.8254834 17.0315359,61.9100387 18.3356243,61.9946823 L18.5,62 L71.5,62 C72.8807119,62 74,60.8807119 74,59.5 C74,58.1192881 72.8807119,57 71.5,57 Z M71.5,33 L18.5,33 C17.1192881,33 16,34.1192881 16,35.5 C16,36.8254834 17.0315359,37.9100387 18.3356243,37.9946823 L18.5,38 L71.5,38 C72.8807119,38 74,36.8807119 74,35.5 C74,34.1192881 72.8807119,33 71.5,33 Z">
</path>
</svg>
</li>
<li>
<svg viewBox="0 0 90 120" fill="currentColor">
<path
d="M90,0 L90,120 L11,120 C4.92486775,120 0,115.075132 0,109 L0,11 C0,4.92486775 4.92486775,0 11,0 L90,0 Z M71.5,81 L18.5,81 C17.1192881,81 16,82.1192881 16,83.5 C16,84.8254834 17.0315359,85.9100387 18.3356243,85.9946823 L18.5,86 L71.5,86 C72.8807119,86 74,84.8807119 74,83.5 C74,82.1745166 72.9684641,81.0899613 71.6643757,81.0053177 L71.5,81 Z M71.5,57 L18.5,57 C17.1192881,57 16,58.1192881 16,59.5 C16,60.8254834 17.0315359,61.9100387 18.3356243,61.9946823 L18.5,62 L71.5,62 C72.8807119,62 74,60.8807119 74,59.5 C74,58.1192881 72.8807119,57 71.5,57 Z M71.5,33 L18.5,33 C17.1192881,33 16,34.1192881 16,35.5 C16,36.8254834 17.0315359,37.9100387 18.3356243,37.9946823 L18.5,38 L71.5,38 C72.8807119,38 74,36.8807119 74,35.5 C74,34.1192881 72.8807119,33 71.5,33 Z">
</path>
</svg>
</li>
<li>
<svg viewBox="0 0 90 120" fill="currentColor">
<path
d="M90,0 L90,120 L11,120 C4.92486775,120 0,115.075132 0,109 L0,11 C0,4.92486775 4.92486775,0 11,0 L90,0 Z M71.5,81 L18.5,81 C17.1192881,81 16,82.1192881 16,83.5 C16,84.8254834 17.0315359,85.9100387 18.3356243,85.9946823 L18.5,86 L71.5,86 C72.8807119,86 74,84.8807119 74,83.5 C74,82.1745166 72.9684641,81.0899613 71.6643757,81.0053177 L71.5,81 Z M71.5,57 L18.5,57 C17.1192881,57 16,58.1192881 16,59.5 C16,60.8254834 17.0315359,61.9100387 18.3356243,61.9946823 L18.5,62 L71.5,62 C72.8807119,62 74,60.8807119 74,59.5 C74,58.1192881 72.8807119,57 71.5,57 Z M71.5,33 L18.5,33 C17.1192881,33 16,34.1192881 16,35.5 C16,36.8254834 17.0315359,37.9100387 18.3356243,37.9946823 L18.5,38 L71.5,38 C72.8807119,38 74,36.8807119 74,35.5 C74,34.1192881 72.8807119,33 71.5,33 Z">
</path>
</svg>
</li>
<li>
<svg viewBox="0 0 90 120" fill="currentColor">
<path
d="M90,0 L90,120 L11,120 C4.92486775,120 0,115.075132 0,109 L0,11 C0,4.92486775 4.92486775,0 11,0 L90,0 Z M71.5,81 L18.5,81 C17.1192881,81 16,82.1192881 16,83.5 C16,84.8254834 17.0315359,85.9100387 18.3356243,85.9946823 L18.5,86 L71.5,86 C72.8807119,86 74,84.8807119 74,83.5 C74,82.1745166 72.9684641,81.0899613 71.6643757,81.0053177 L71.5,81 Z M71.5,57 L18.5,57 C17.1192881,57 16,58.1192881 16,59.5 C16,60.8254834 17.0315359,61.9100387 18.3356243,61.9946823 L18.5,62 L71.5,62 C72.8807119,62 74,60.8807119 74,59.5 C74,58.1192881 72.8807119,57 71.5,57 Z M71.5,33 L18.5,33 C17.1192881,33 16,34.1192881 16,35.5 C16,36.8254834 17.0315359,37.9100387 18.3356243,37.9946823 L18.5,38 L71.5,38 C72.8807119,38 74,36.8807119 74,35.5 C74,34.1192881 72.8807119,33 71.5,33 Z">
</path>
</svg>
</li>
</ul>
</div>
<span>Loading</span>
</div>
</div>
<header class="header stickon">
<ul class="lsize">
<li class="logo"><a class="nav-link" href="index.html" onclick="return false;"><img
src="assets/logos/finalLogo.webp" alt="AEC Library" class="logo-img"> AEC LIBRARY</a></li>
<li class="login"><a href="./Login_page/login_page.html" class="nav-link"><i class="fas fa-sign-in-alt"></i> LOGIN
</a></li>
</ul>
</header>
<nav class="new-nav navbar-expand-lg navbar-light sticky">
<!-- navbar brand -->
<!-- <a href="index.html" class="navbar-brand" id="nb"> Pictionary </a> -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- hamburger menu -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- navbar items -->
<ul class="ms-auto" style="padding-top: 1px;">
<li class="nav-item"><a href="index.html" onclick="return false;"><i class="fas fa-home"></i>HOME</a></li>
<li class="nav-item"><a href="about.html"><i class="fas fa-book"></i>ABOUT</a></li>
<li class="nav-item"><a href="./public/donate-book.html"><i class="fas fa-book"></i>DONATE BOOKS</a></li>
<li class="nav-item"><a href="resource.html"><i class="fas fa-external-link-alt"></i>RESOURCES</a></li>
<li class="nav-item"><a href="./blogs.html"><i class="fas fa-sign-in-alt"></i>BLOGS</a></li>
<!-- Added Quiz page -->
<li class="nav-item"><a href="Quiz/pages/quizhome.html"><i class="fas fa-gamepad"></i>PLAY QUIZ</a></li>
<li class="nav-item"><a href="./public/contact us .html"><i class="fas fa-address-book"></i>CONTACT US</a></li>
<li class="nav-item"><a href="#faq" ><i class="fas fa-sign-in-alt"></i>FAQs</a></li>
<li class="nav-item"><a href="contributors.html"><i style="font-size: 21px;"
class="fas fa-user-friends"></i>CONTRIBUTORS</a></li>
</ul>
</div>
</nav>
<!--<nav class="new-nav">
<ul>
<li class="nav-item"><a href="index.html"><i class="fas fa-home"></i>HOME</a></li>
<li class="nav-item"><a href="about.html"><i class="fas fa-book"></i>ABOUT</a></li>
<li class="nav-item"><a href="./public/donate-book.html"><i class="fas fa-book"></i>DONATE BOOKS</a></li>
<li class="nav-item"><a href="resource.html"><i class="fas fa-external-link-alt"></i>RESOURCES</a></li>
<li class="nav-item"><a href="./sign up page/index.html"><i class="fas fa-sign-in-alt"></i>SIGN UP</a></li>
<li class="nav-item"><a href="./public/contact us .html"><i class="fas fa-address-book"></i>CONTæACT US</a></li>
<li class="nav-item"><a href="contributors.html"><i style="font-size: 21px;" class="fas fa-user-friends"></i>CONTRIBUTORS</a></li>
</ul>
</nav>-->
<div id="issueSection" class="container my-5 " data-aos="fade">
<div class="hero-left ismargin" autofocus>
<h1 id="IssueHere">Issue Here</h1>
<form id="libraryForm">
<form id="libraryForm" class="libraryForm" action="#" method="post">
<div class="form-group row">
<!-- <label for="dateIssue" class="col-sm-2 col-form-label"> Date of Issue</label> -->
<label for="dateIssue" class="issue"><span>Date of Issue</span></label>
<div class="col">
<input type="date" id="issueDate" name="issueDate" onkeydown="return false;">
</div>
<small class="small"></small>
</div>
<div class="form-group row">
<label for="bookName" class="col col-form-label"> <strong>Name</strong></label>
<div class="col">
<input type="text" class="input-box" id="bookName" placeholder="Book Name"/>
</div>
<small class="small"></small>
</div>
<div class="form-group row">
<label for="Author" class="col col-form-label"> <strong>Author</strong></label>
<div class="col">
<select class="form-check-input1" name="author" id="author" onchange='CheckAuthor(this.value);'
style="z-index: 1;" required>
<option value="" disabled selected>Select Author</option>
<option value="Agatha Christie">Agatha Christie</option>
<option value="Charles Dickens">Charles Dickens</option>
<option value="Dan Brown">Dan Brown</option>
<option value="Emily Bronte">Emily Bronte</option>
<option value="George Elliot">George Elliot</option>
<option value="J.K. Rowling">J.K. Rowling</option>
<option value="Jane Austen">Jane Austen</option>
<option value="John Green">John Green</option>
<option value="Mark Twain">Mark Twain</option>
<option value="Oscar Wilde">Oscar Wilde</option>
<option value="Rabindranath Tagore">Rabindranath Tagore</option>
<option value="Roald Dahl">Roald Dahl</option>
<option value="Rudyard Kipling">Rudyard Kipling</option>
<option value="Ruskin Bond">Ruskin Bond</option>
<option value="Sarah J. Maas">Sarah J. Maas</option>
<option value="Sylvia Plath">Sylvia Plath</option>
<option value="William Shakespeare">William Shakespeare</option>
<option value="Other">Other</option>
</select>
<input type="text" class="input-box" id="other_author" name="other_author" placeholder="Enter Author"
style='display:none;' />
</div>
<small class="small"></small>
</div>
<div class="form-group row">
<label for="Author" class="col col-form-label"> <strong>Category</strong></label>
<div class="col">
<select class="form-check-input1" name="category" id="category" style="z-index: 1;">
<option value="" disabled selected>Select Category</option>
<option value="Arts & Music">Arts & Music</option>
<option value="Biographies">Biographies</option>
<option value="Business">Business</option>
<option value="Comics">Comics</option>
<option value="Computer & Tech">Computers & Tech</option>
<option value="Cooking">Cooking</option>
<option value="Education & Reference">Education & Reference</option>
<option value="Entertainment">Entertainment</option>
<option value="Health & Fitness">Health & Fitness</option>
<option value="History">History</option>
<option value="Hobbies & Crafts">Hobbies & Crafts</option>
<option value="Home & Garden">Home & Garden</option>
<option value="Horror">Horror</option>
<option value="Kids">Kids</option>
<option value="Literature & Fiction">Literature & Fiction</option>
<option value="Medical">Medical</option>
<option value="Mystery">Mystery</option>
<option value="Parenting">Parenting</option>
<option value="Religion">Religion</option>
<option value="Romance">Romance</option>
<option value="Sci-Fi & Fantasy">Sci-Fi & Fantasy</option>
<option value="Science & Maths">Science & Maths</option>
<option value="Self-Help">Self-Help</option>
<option value="Social Sciences">Social Sciences</option>
<option value="Sports">Sports</option>
<option value="Travel">Travel</option>
<option value="True Crime">True Crime</option>
</select>
</div>
<small class="small"></small>
</div>
<div class="form-group row">
<div class="col d-flex justify-content-center">
<button type="submit" onclick="validateIssue()" class="btn btn-primary add-Book" id="addBook">Add Book</button>
</div>
</div>
</form>
</div>
<div class="hero-right">
<div id="table" class="issmargin">
<div class="heading mb-3">
<h1>Your Books</h1>
</div>
<div style="overflow-x:auto;" id="books-content">
<table class="table table-striped" id="mytable" style="cursor: default">
<thead>
<tr id="data">
<th scope="col">Date of Issue</th>
<th scope="col">Name</th>
<th scope="col">Author</th>
<th scope="col">Type</th>
<th scope="col">Category</th>
</tr>
</thead>
<tbody id="tableBody">
<!-- <ul>
<li></li>
</ul> -->
</tbody>
</table>
</div>
</div>
<div class="contain">
<!-- <div class="line"><b id="bold"> Choose and read books </b><br>from your comfort zone </div> -->
<div id="search">
<form id="searchForm" class="form-inline my-2 my-lg-0 p-3">
<!-- <button class="btn btn-dark my-2 my-sm-0">Keyword</button>
<input class="form-control mr-sm-2" id="searchTxt" type="search" placeholder="Search for a book"
aria-label="Search" name="search" style="border: none;" onkeyup="searchbooks()" />
<button class="btn btn-dark my-2 my-sm-0" id="searchsymbol" type="submit">
🔍
</button> -->
<h1 class="search-heading">Read Books</h2>
<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for names.."
title="Type in a name">
<ul id="myUL">
<li><a href="./Notes/physicselectricitynotes.pdf" target="_blank">Current Electricity Problem book</a>
</li>
<li><a href="./Notes/physicsmagnetism.pdf" target="_blank">Electricity and Magnetism</a></li>
<li><a href="./Notes/chemsurfacechem.pdf" target="_blank">Chemistry</a></li>
<li><a href="./Notes/chempblock.pdf" target="_blank">p-Block Elements chemistry </a></li>
<li><a href="./Notes/csds.pdf" target="_blank">Data structure in C & C++</a></li>
<li><a href="./Notes/sqldbms.pdf" target="_blank">DBMS</a></li>
<li><a href="./Notes/bsprincipleofmanagement.pdf" target="_blank">Principal of Management</a></li>
<li><a href="./Notes/ecomoneyandbanking.pdf" target="_blank">Economics of Money and Banking</a></li>
<li><a href="./Samplepapers/cbse10science.pdf" target="_blank">Science Sample Question Paper for
class-10</a></li>
<li><a href="./Samplepapers/cbse10science1.pdf" target="_blank">Science Question Bank for class-10</a>
</li>
<li><a href="./Samplepapers/class12phy.pdf" target="_blank">Physics Sample Question Paper for class-12</a>
</li>
<li><a href="./Samplepapers/class12chem.pdf" target="_blank">Chemistry Sample Question Paper for
class-12</a></li>
<li><a href="./Samplepapers/class12bio.pdf" target="_blank">Biology Sample Question Paper for class-12</a>
</li>
<li><a href="./Samplepapers/class12maths.pdf" target="_blank">CBSE Mathmatics Sample Question Paper for
class-12</a></li>
<li><a href="./Samplepapers/jee.pdf" target="_blank">JEE MAIN Sample Question Paper</a></li>
<li><a href="./Samplepapers/neet.pdf" target="_blank">NEET Sample Question Paper</a></li>
<li><a href="https://drive.google.com/file/d/1IjxZaCtEeMwdmuO2b0Vs45Su8jvG3fwa/view"
target="_blank">Science Book for Class-10</a></li>
<li><a href="https://drive.google.com/file/d/1cN04y7Gqe03HEb_zXbHdhpeA3AsRW1g5/view"
target="_blank">Science Book for Class-09</a></li>
<li><a href="https://drive.google.com/file/d/12a0_JGZ2GTqUzckFDdBLLaJGoV8jKKV0/view"
target="_blank">Science Book for Class-08</a></li>
<li><a href="https://drive.google.com/file/d/1PGqKZZqWD8o6-auHsqLrwxCsXyilPkP6/view"
target="_blank">Science Book for Class-07</a></li>
<li><a href="https://drive.google.com/file/d/1DlxE-x8-uUY4hWq7AvlKFWWAEhSFFLbw/preview"
target="_blank">Physics for Class-12</a></li>
<li><a href="https://drive.google.com/file/d/1aXHembo-Cy5xSkt7cdwfk3tUo6rK2PZ-/preview"
target="_blank">Chemistry for Class-12</a></li>
<li><a href="https://drive.google.com/file/d/1DlAxpsZ5E3clkp-aNUsQOeh1vI1EXd-R/preview"
target="_blank">Biology for Class-12</a></li>
<li><a
href="https://drive.google.com/file/d/0B8buzf-hm2wyZy1fQmVNM1gyTnM/view?resourcekey=0-wVoCHiiwS3rvs7r_dNvj8Q"
target="_blank">Economics for Class-12</a></li>
<li><a href="https://drive.google.com/drive/folders/1YWwfkGfaiDxxg0agGGCSxZe-1Qmpvahb"
target="_blank">Supplementary Reader in English for Class-09</a></li>
<li><a href="https://drive.google.com/drive/folders/1OtLBgu-9AVSSH6O1Z0AocQPoYNFUL_3S"
target="_blank">Beehive Book for Class-09</a></li>
<li><a href="https://drive.google.com/drive/folders/18675WSWNHURqKWQUe4ZGvd0nXOQCk4dk"
target="_blank">Mathmatics Book for Class-09</a></li>
<li><a href="https://drive.google.com/drive/folders/1b2DM6ed7LigVtZ2jEWCKhyevNegnfUu4"
target="_blank">First-Flight Book for Class-10</a></li>
<li><a href="https://drive.google.com/drive/folders/1RmpwGFb5QCPXG-yBKhCsquW90V8U6RJZ"
target="_blank">NCERT Mathmatics book for Class-10</a></li>
<li><a href="https://drive.google.com/drive/folders/1YTmwfxEdDmMT3dLVmCACLW1N-7fGnE_z"
target="_blank">Democratic Politics-1 book for Class-09</a></li>
<li><a href="https://drive.google.com/drive/folders/1xsnrX7060su6dZ84LYAq8-0QedIatMrh"
target="_blank">Contemporary India-1 book for Class-09</a></li>
<li><a href="https://drive.google.com/drive/folders/1BRXmQuwjGasfMs04TOb0twQmaL6a_eAT"
target="_blank">Social Science Book for Class-09</a></li>
</ul>
</form>
</div>
</div>
</div>
</div>
<br>
<br>
<!-- *****************************************************changes*********************************************** -->
<script>
function myFunction() {
var input, filter, ul, li, a, i, txtValue;
input = document.getElementById("myInput");
filter = input.value.toUpperCase();
ul = document.getElementById("myUL");
li = ul.getElementsByTagName("li");
for (i = 0; i < li.length; i++) {
a = li[i].getElementsByTagName("a")[0];
txtValue = a.textContent || a.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
li[i].style.display = "";
} else {
li[i].style.display = "none";
}
}
}
</script>
<!-- <script>
function searchbooks()
{
var q = document.getElementById("searchTxt");
var v = q.value.toLowerCase();
var rows = document.getElementsByTagName("tr");
//var on = 0;
for ( var i = 0; i < rows.length; i++ ) {
var fullname = rows[i].getElementsByTagName("td");
fullname = fullname[1].innerHTML.toLowerCase();
if ( fullname.indexOf(v) > -1 ) {
if ( fullname.indexOf(v) > -1 ) {
rows[i].style.display = "";
} else {
rows[i].style.display = "none";
}
}
}
// var n = document.getElementById("noresults");
// if ( on == 0 && n ) {
// n.style.display = "";
// document.getElementById("qt").innerHTML = q.value;
// } else {
// n.style.display = "none";
// }
}
</script> -->
<!-- ****************************************************done******************************************** -->
<div class="suggestion" data-aos="fade-up">
<ul class="list">
<li>
<div class="suggest"><span class="counter" data-target="518">0</span>+</div>
<div>Journals</div>
</li>
<li>
<div class="suggest"><span class="counter" data-target="213">0</span>+</div>
<div>Referrals</div>
</li>
<li>
<div class="suggest"><span class="counter" data-target="1052">0</span>+</div>
<div>E-books</div>
</li>
</ul>
</div>
<section class="book">
<h1 class="tex">
<div class="alan-btn"></div>
<script type="text/javascript" src="https://studio.alan.app/web/lib/alan_lib.min.js"></script>
<script>
var alanBtnInstance = alanBtn({
key: "f65cbb6930ad9e79c7e788c4b0caed3c2e956eca572e1d8b807a3e2338fdd0dc/stage",
onCommand: function (commandData) {
if (commandData.command === "go:back") {
//call client code that will react on the received command
}
},
rootEl: document.getElementById("alan-btn"),
});
</script>
<div data-aos="fade-up">
<h1 class="bheads">Recommended books</h1>
<br>
<p>Read some books on HTML, CSS and JavaScript for free using the Library</p>
<div class="books1 " id="recommended_books" data-aos="fade"></div>
<script src="./recommended_books.js"></script>
<div data-aos="fade-down">
<br>
<hr>
<br>
<h1 class="bheads audiobooks-heading">Listen to Audiobooks</h1>
<div class="books1 abborder " data-aos="fade">
<link rel="stylesheet" href="assets/css/audiobook.css">
<script src="assets/js/audiobook.js"></script>
<div class="faddy books-audios">
<!-- Book 1 -->
<a href="https://www.audible.in/pd/Python-Computer-Programming-for-Beginners-Step-by-Step-Audiobook/B089HJ4KQF?qid=1643917101&sr=1-1&ref=a_search_c3_lProduct_1_1&pf_rd_p=2d02bc98-4366-4f94-99d9-5e898cda0766&pf_rd_r=2A4794TMRTZFE4TBBDMR"
target="_blank">
<img src="https://m.media-amazon.com/images/I/51qDbDDGT7L._SL500_.jpg">
</a>
<div class="sound">
<img src="media/play.webp" id="nyan-btn">
</div>
<audio id="nyan" src="assets/AudioBook/Python_1.mp3" preload="metadata" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<div class="faddy books-audios">
<!-- Book 2 -->
<a href="https://www.audible.in/pd/Computer-Networking-Audiobook/B07NPZL5VQ?qid=1643917101&sr=1-2&ref=a_search_c3_lProduct_1_2&pf_rd_p=2d02bc98-4366-4f94-99d9-5e898cda0766&pf_rd_r=2A4794TMRTZFE4TBBDMR"
target="_blank">
<img src="https://m.media-amazon.com/images/I/51vpG4hU6FL._SL500_.jpg">
</a>
<div class="sound">
<img src="media/play.webp" id="nyan-btn">
</div>
<audio id="nyan" src="assets/AudioBook/Python_1.mp3" preload="metadata" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<div class="faddy books-audios">
<!-- Book 3 -->
<a href="https://www.audible.in/pd/Computer-Programming-The-Bible-Audiobook/B07MNV3JY9?qid=1643917101&sr=1-7&ref=a_search_c3_lProduct_1_7&pf_rd_p=2d02bc98-4366-4f94-99d9-5e898cda0766&pf_rd_r=2A4794TMRTZFE4TBBDMR"
target="_blank">
<img src="https://m.media-amazon.com/images/I/51hVSO2ONDL._SL500_.jpg" target="_blank">
</a>
<div class="sound">
<img src="media/play.webp" id="nyan-btn">
</div>
<audio id="nyan" src="assets/AudioBook/Python_1.mp3" preload="metadata" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<div class="faddy books-audios" >
<!-- Book 4 -->
<a href="https://www.audible.in/pd/Computer-Programming-and-Cyber-Security-for-Beginners-Audiobook/B0862GMM48?qid=1643917584&sr=1-3&ref=a_search_c3_lProduct_1_3&pf_rd_p=2d02bc98-4366-4f94-99d9-5e898cda0766&pf_rd_r=J0S3TXBQ6VERVE765ER4"
target="_blank">
<img src="https://m.media-amazon.com/images/I/511KH-QzPeL._SL500_.jpg">
</a>
<div class="sound">
<img src="media/play.webp" id="nyan-btn">
</div>
<audio id="nyan" src="assets/AudioBook/Python_1.mp3" preload="metadata" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</div>
</div>
</section>
<div class="member" data-aos="fade-up">
<section class="donate">
<div class="text"><b>Become a member</b>
<br>
<h4>By donating your books to </h4> <br>
<h4>help others</h4>
</div>
<div>
<button class="donate-btn"><a href="./public/donate-book.html">DONATE NOW</a></button>
</div>
</section>
<section class="photo"><img src="images/8.webp" alt=""><img src="images/17.webp.webp" alt=""></section>
</div>
<br>
<div class="member" id="res" data-aos="fade-down">
<section class="photo"><img src="images/8.webp" alt=""><img src="images/17.webp.webp" alt=""></section>
<section class="donate">
<div class="text"><b>Resources</b>
<br>Get exclusive access to all <br>the materials available in our <br>environment which will help you
<br>to satisfy your needs and wants
</div>
<div>
<button class="donate-btn"><a href="resource.html">All Resources</a></button>
</div>
</section>
</div>
<br><br>
<div class="blogs" data-aos="fade-up">
<h1><b class='latest-blogs'> Latest Blogs</b></h1>
<p class="latest-blogs-p">Regular records of your thoughts, opinions or experiences that you put on the <br>internet
for other people to
read </p>
<div class="blog-content">
<div class="blog-carousel">
<div class="inner">
<img src="./Blog/img1.webp">
<img src="./Blog/img2.webp">
<img src="./Blog/img3.webp">
<img src="./Blog/img4.webp">
<img src="./Blog/img5.webp">
<img src="./Blog/img6.webp">
<img src="./Blog/img7.webp">
<img src="./Blog/img11.webp">
</div>
</div>
<div class="desc-carousel">
<div class="inner">
<div class="desc">
<h1>Books are the most Trusted Friends you'll ever have.</h1>
<p> And books can be our best friends for life, for all the right reasons. Good books enrich our mind and
broaden our perspective towards life.</p>
</div>
<div class="desc">
<h1>Distance-Learning programmes on BOOM</h1>
<p>Blog about pursuing an MBA, Masters Degree, Online MBA, DBA, Bachelors or PGCE via Online Learning or
Distance learning.</p>
</div>
<div class="desc">
<h1>Our Future is our YOUTH</h1>
<p>Higher education is looking beyond the dwindling market of 18-year-olds to lifelong, professional and
continuing ed to sustain enrollments.</p>
</div>
<div class="desc">
<h1>The Digital Era of Education</h1>
<p>Current trends indicate that digital formats will be an integral part of educational institutions in the
post-Covid-19 world. </p>
</div>
<div class="desc">
<h1>Innovation in the field of Literature</h1>
<p>The main parts of innovation have been highlighted and the aim of this review is to give a good insight
in research field</p>
</div>
<div class="desc">
<h1>The Habit Of Book-Reading</h1>
<p>The habit of reading is one of the best qualities that a person can possess. Books are known to be your
best friend for a reason.</p>
</div>
<div class="desc">
<h1>The Magic of Literature</h1>
<p>Magical realism is a genre of literature that depicts the real world as a magic or fantasy. </p>
</div>
<div class="desc">
<h1>How to Write and Publish Childrens' Books
</h1>
<p>Kids Book Review is a voluntary children's literature and book review which works with authors,
illustrators and publishers. </p>
</div>
</div>
</div>
</div>
</div>
<div class="blog-container" data-aos="fade-down">
<div class="card1" data-aos="fade">
<div class="card-bg"></div>
<div class="owner">
<h1>Machine-Learning</h1>
<p>Posted by Rudramadhaba Mishra</p>
<p>October 23, 2021</p>
</div>
<div class="info">
<p>Machine Learning is the field of study that gives computers the capability to learn without being explicitly
programmed. ML is one of the most exciting technologies that one would ever come across.</p>
</div>
<a href="https://www.simplilearn.com/tutorials/machine-learning-tutorial/what-is-machine-learning" target="_blank"
class="read-more"> Read more<span><i class="bot-arrow bi bi-arrow-right"></i></span></a>
</div>
<div class="card2" data-aos="fade">
<div class="card-bg"></div>
<div class="owner">
<h1>Web development</h1>
<p>Posted by Palak Bhogra</p>
<p>October 30, 2021</p>
</div>
<div class="info">
<p>Web development refers to building, creating, and maintaining websites. The web development process includes
web design, web content development, client-side/server-side scripting and network security configuration,
among other tasks.
</p>
</div>
<a href="https://www.w3schools.com/whatis/" target="_blank" class="read-more">Read more <span><i
class="bot-arrow bi bi-arrow-right"></i></span></a>
</div>
<div class="card3" data-aos="fade">
<div class="card-bg"></div>
<div class="owner">
<h1>HTML</h1>
<p>Posted by Himansu Hansda</p>
<p>November 1, 2021</p>
</div>
<div class="info">
<p>Hyper Text Markup Language is used for creating web pages and web applications.
</p>
</div>
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML" target="_blank" class="read-more">Read more <span><i
class="bot-arrow bi bi-arrow-right"></i></span></a>
</div>
<div class="card4" data-aos="fade">
<div class="card-bg"></div>
<div class="owner">
<h1>Python</h1>
<p>Posted by Mantosh</p>
<p>October 29, 2021</p>
</div>
<div class="info">
<p>Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a
simple but effective approach to object-oriented programming.
</p>
</div>
<a href="https://www.codecademy.com/resources/docs/python" target="_blank" class="read-more">Read more <span><i
class="bot-arrow bi bi-arrow-right"></i></span></a>
</div>
</div>
<div class="update" data-aos="fade-up">
<img src="./assets/images/feedback.webp" alt="feedback" />
<div class="login-box" data-aos="fade">
<h1 class="title">Get In Touch</h1>
<form id="feedbackForm" method="POST" action="">
<div class="user-box">
<input type="text" name="feedbackName" id="feedbackName" required>
<span class="line"></span>
<label>Name</label>
</div>
<div class="user-box">
<input type="email" name="feedbackEmail" id="feedbackEmail" required>
<span class="line"></span>
<label>Email</label>
</div>
<div class="user-box">
<textarea id="txtid" name="txtname" rows="1" maxlength="200" required></textarea>
<span class="line2"></span>
<label>Message</label>
</div>
<a href="#feedbackForm" id="formAnchor">
<span></span>
<span></span>
<span></span>
<span></span>
Submit
</a>
</form>
</div>
<script>
const btn = document.getElementById("formAnchor");
const form = document.getElementById("feedbackForm");
const feedbackName = document.getElementById("feedbackName");
const feedbackEmail = document.getElementById("feedbackEmail");
const msg = document.getElementById("txtid");
function isEmail(email) {
let regexp = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return regexp.test(String(email).toLowerCase());
}
btn.addEventListener("click", () => {
if (feedbackName.value == "") {
swal("Error !", "Please enter a valid name", "error");
}
else if (!isEmail(feedbackEmail.value)) {
swal("Error !", "Please enter a valid email", "error");
}
else if (msg.value == "") {
swal("Error !", "Please enter a message", "error");
}
else {
swal("Thank You !", "Your feedback is posted !", "success");
form.reset();
}
})
</script>
<!-- <div class="stay-update">STAY UPDATED</div> -->
</div>
<section class="faq-container" id="faq" data-aos="fade-up">
<h1 class="faq-heading">FAQ'S</h1>
<div class="faq-one" data-aos="fade">
<!-- faq question -->
<h3 class="faq-page">Q: What is AEC Library?</h3>
<!-- faq answer -->
<div class="faq-body">
<p>This is an Open-Source Library Website that contains a <a class="faq-link" href="resource.html"><span class="faq-link-inner">Resources</span> section</a> to learn different topics, <a class="faq-link" href="./public/donate-book.html"><span class="faq-link-inner">Donate book</span> section</a> to donate your old books, and a <a class="faq-link" href = "#table"><span class="faq-link-inner">Book issue</span> section </a>to keep a record of all the books issued. </p>
</div>
</div>
<div class="faq-two" data-aos="fade">
<!-- faq question -->
<h3 class="faq-page">Q: What is the best part of AEC Library?</h3>
<!-- faq answer -->
<div class="faq-body">
<p>The best part about the website is that you can also contribute to the website for others to use the
resourses by donating the books you have. All categories of books are welcomed for donation.</p>
</div>
</div>
<div class="faq-three" data-aos="fade">
<!-- faq question -->
<h3 class="faq-page">Q: How to become a member? </h3>
<!-- faq answer -->
<div class="faq-body">
<p>By donating any book of your choice, you can become a member of the AEC Library.</p>
</div>
</div>
<div class="faq-four" data-aos="fade">
<!-- faq question -->
<h1 class="faq-page">Q: What is the registration fee? </h1>
<!-- faq answer -->
<div class="faq-body">
<p>There is no registration fees! One simply needs to donate a book to become a member.</p>
</div>
</div>
<div class="faq-five" data-aos="fade">
<!-- faq question -->
<h1 class="faq-page">Q: I forgot my login credentials. What should I do? </h1>
<!-- faq answer -->
<div class="faq-body">
<p>No worries! Click on the "Forgot your Password?" link. An email containing the instructions to reset your
password will be sent to your registered email address.</p>
</div>
</div>
<div class="faq-six" data-aos="fade">
<!-- faq question -->
<h1 class="faq-page">Q: I can't find the book I am looking for. What to do? </h1>
<!-- faq answer -->
<div class="faq-body">
<p>The library has a huge collection of books of multiple genres. However, if you can't find the book you're
looking for, do reach out to us! Drop us a message through the <a class="faq-link" href="public/contact us .html"><span class="faq-link-inner">Contact us</span> section</a>.</p>
</div>
</div>
<div class="faq-four" data-aos="fade">
<!-- faq question -->
<h1 class="faq-page">Q: How can I donate a book? </h1>
<!-- faq answer -->
<div class="faq-body">
<p>Click on the <a class="faq-link" href="./public/donate-book.html"><span class="faq-link-inner">Donate books</span> button</a> and fill out the form with your details. We will reach out to you with
further details.</p>
</div>
</div>
<div class="faq-five" data-aos="fade">
<!-- faq question -->
<h1 class="faq-page">Q: What are the benefits of an account in Aec-Library? </h1>
<!-- faq answer -->
<div class="faq-body">
<p>
<ol>
<li>Contribute to Aec-library :
Aec-library is a community initiative to build a robust book catalog. Anyone can add or edit data about books
and blogs.
</li>
<li>
Personalize your experience :
We are always adding new features to our site so you can make your experience more personal.
</li>
</ol>
</p>
</div>
</div>
<div class="faq-six" data-aos="fade">
<!-- faq question -->
<h1 class="faq-page">Q: How can I find a book here? </h1>
<!-- faq answer -->
<div class="faq-body">
<p>Go to the <a class="faq-link" href = "#search"><span class="faq-link-inner">Choose and read books</span> section</a> and search the book you are looking for.</p>
</div>
</div>
<div class="faq-seven" data-aos="fade">
<!-- faq question -->
<h1 class="faq-page">Q: I haven't found a book but it's not readable format? Is something wrong? </h1>
<!-- faq answer -->
<div class="faq-body">
<p>This is not supposed to happen but if it happens please leave a message on our <a class="faq-link" href="public/contact us .html"><span class="faq-link-inner">Contact us</span> section</a>. We will
definitely look into it. </p>
</div>
</div>
<div class="faq-eight" data-aos="fade">
<!-- faq question -->
<h1 class="faq-page">Q: How can I download a book? </h1>
<!-- faq answer -->
<div class="faq-body">
<p>Go to our <a class="faq-link" href = "#recommended_books"><span class="faq-link-inner">Recommended Book</span> section</a>. Choose the book you want to download then click on the "Download
as pdf" button.
Happy reading :)</p>
</div>
</div>
<div class="faq-nine" data-aos="fade">
<!-- faq question -->
<h1 class="faq-page">Q: How many books can I checkout at once? </h1>
<!-- faq answer -->
<div class="faq-body">
<p>You can checkout as many books as you want.</p>
</div>
</div>
<div class="faq-ten" data-aos="fade">
<!-- faq question -->
<h1 class="faq-page">Q: How can I access the Online library? </h1>
<!-- faq answer -->
<div class="faq-body">
<p>Go to our <a class="faq-link" href="resource.html"><span class="faq-link-inner">Resources</span> section</a>. Click on the "All resources" button. You can find in our environment all recources
to satisfy your need. </p>
</div>
</div>
</section>
<div class="contact" data-aos="fade-down">
<img src="https://thumbs.gfycat.com/AcceptableWillingBushsqueaker-max-1mb.gif" alt="">
<ul>
<li class="heading">Contact:</li>
<li><a href="tel:95768xyza">Ph:95768xyza</a></li>
<li><a href="mailto:[email protected]" target="_blank">E:[email protected]</a></li>
<li><a href="https://www.linkedin.com/in/sauravmukherjee44/" target="_blank"> Linkedin</a></li>
<li><a href="https://github.com/SauravMukherjee44" target="github">Github</a></li>
<li><a href="https://twitter.com/mesourav44" target="twitter"> Twitter</a></li>
<li><a href="https://www.youtube.com/channel/UCYGVtIgQIAChKBWBmChxzJw" target="YouTube">YouTube</a></li>
</ul>
<ul>
<li class="heading">Community</li>
<li><a href="#">Our Story</a></li>
<li><a href="./public/privacy-policy.html">Privacy Policy</a></li>
<li><a href="#">Refund Policy</a></li>
<li><a href="#">Terms Of use</a> </li>
<li><a href="#">Accessibility</a></li>
<li><a href="#">Publishing process</a> </li>
</ul>
<ul>
<li class="heading">Company</li>
<li><a href="public/contact us .html">Contact us</a> </li>
<li><a href="./public/terms&conditions.html">Terms and conditions</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Information</a></li>
</ul>
<ul>
<li class="newsletter-heading">
<p class="heading">Subscribe to our newsletter</p>
</li>
<form method="post" autocomplete="off" name="google-sheet" bgcolor="#00000" action="">
<div class="newsletter-form">
<div class="newsletter-name"> <input type="text" class="input" name="Name" id="newsletterName"
placeholder=" Enter your name"></div>
<div class="newsletter-email"> <input type="text" class="input" name="Email" id="newsletterEmail"
placeholder=" Enter your email"></div>
<div class="newsletter-submit btn-zoom"><button type="submit" id="btnSubmit">SUBSCRIBE</button></div>
</div>
<div id="msg"></div>
</form>
</ul>