-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
973 lines (948 loc) · 34.1 KB
/
Copy pathindex.html
File metadata and controls
973 lines (948 loc) · 34.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CODEX - Book Store Website</title>
<link rel="stylesheet" href="css/style.css" />
<!--- google font link-->
<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=Poppins:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<!-- Fontawesome Link for Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="apple-touch-icon" sizes="57x57" href="favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">
<div class="img">
<img src="images/logorob.png" alt="" />
</div>
<div class="logo-header">
<h4>CODEX<a href="index.html"></a></h4>
<small>Book Store Website</small>
</div>
</div>
<ul class="nav-list">
<div class="logo">
<div class="title">
<div class="img">
<img src="images/logorob.png" alt="" />
</div>
<div class="logo-header">
<h4><a href="index.html">CODEX</a></h4>
<small>Book Store Website</small>
</div>
</div>
<button class="close"><i class="fa-solid fa-xmark"></i></button>
</div>
<li><a href="index.html">Home</a></li>
<li><a href="pages/service.html">Service</a></li>
<li><a href="pages/contact.html">Contact</a></li>
<li><a href="Pages/book-filter.html">Books</a></li>
<button class="login"><a href="pages/login.html">Log In</a></button>
<button class="signup">
<i class="fa-solid fa-user"></i><a href="pages/registration.html">Sign Up</a>
</button>
</ul>
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
</header>
<section class="hero">
<div class="main">
<div class="content">
<marquee><h1>ወደ CODEX መጽሐፍ መደብር እንኳን ደህና መጡ</h1></marquee>
<h2>ልዩ 50% ቅናሽ</h2>
<h5>ለተማሪዎቻችን ማህበረሰብ</h5>
<p>
አንባቢ ሳይሞት አንድ ሺህ ህይወት ይኖራል . . . <br>
የማያነብ ሰው ግን የሚኖረው አንዴ ብቻ ነው።
</p>
<div class="btns">
<button>Get The Deal<i class="fa-solid fa-arrow-right"></i></button>
<button>See other Promos</button>
</div>
</div>
<div class="img">
<img
src="images/sihuread.png"
alt=""
/>
</div>
</div>
<div class="square-dot">
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
</div>
<div class="orange-circle"></div>
<div class="blue-circle"></div>
</section>
<section class="service">
<div class="service-container">
<div class="service-card">
<div class="icon">
<i class="fa-solid fa-bolt-lightning"></i>
</div>
<div class="service-content">
<h5>Quick Delivery</h5>
<p>
Experience convenience with our
quick and hassle-free shipping options.
</p>
</div>
</div>
<div class="service-card">
<div class="icon">
<i class="fa-solid fa-shield"></i>
</div>
<div class="service-content">
<h5>Secure Payment</h5>
<p>
Shop with confidence with our secure payment options.
</div>
</div>
<div class="service-card">
<div class="icon">
<i class="fa-solid fa-thumbs-up"></i>
</div>
<div class="service-content">
<h5>Best Quality</h5>
<p>
Experience the pinnacle of quality with our products,
coupled with secure payment options.
</p>
</div>
</div>
<div class="service-card">
<div class="icon">
<i class="fa-solid fa-star"></i>
</div>
<div class="service-content">
<h5>Return Guarantee</h5>
<p>
Indulge in worry-free shopping with our return guarantee, alongside
secure payment and top-tier quality.
</p>
</div>
</div>
</div>
</section>
<section class="suggestion">
<div class="container">
<div class="recommend">
<h4>Recommended For You</h4>
<p>
Explore our curated selection of recommended books, backed by secure payment,
top-notch quality, and hassle-free returns.
</p>
<div class="book-container">
<div class="book">
<figure>
<a href="Pages/book-detail.html"
><img src="images/godanisa.webp" alt=""
/></a>
</figure>
</div>
<div class="book">
<figure>
<a href="Pages/book-detail.html"
><img src="images/piasa.jpg" alt=""
/></a>
</figure>
</div>
<div class="book">
<figure>
<a href="Pages/book-detail.html"
><img src="images/gurage.jpg" alt=""
/></a>
</figure>
</div>
<div class="book">
<figure>
<a href="Pages/book-detail.html"
><img src="images/tigray.jpg" alt=""
/></a>
</figure>
</div>
</div>
<div class="circle-1"></div>
<div class="circle-2"></div>
<div class="square-dot">
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
</div>
</div>
<div class="popular">
<h4>Popular in 2020</h4>
<p>
Discover the latest and greatest in popular literature,
accompanied by secure payment, premium quality, and hassle-free returns.
</p>
<div class="book-container">
<div class="book">
<figure>
<a href="Pages/book-detail.html"
><img src="images/bealu2.jpg" alt=""
/></a>
</figure>
</div>
<div class="book">
<figure>
<a href="Pages/book-detail.html"
><img src="images/kolfe.webp" alt=""
/></a>
</figure>
</div>
<div class="book">
<figure>
<a href="Pages/book-detail.html"
><img src="images/book-7.jpg" alt=""
/></a>
</figure>
</div>
<div class="book">
<figure>
<a href="Pages/book-detail.html"
><img src="images/book-8.jpg" alt=""
/></a>
</figure>
</div>
</div>
<div class="circle-1"></div>
<div class="circle-2"></div>
<div class="square-dot">
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
<i class="fa-solid fa-square"></i>
</div>
</div>
</div>
</section>
<section class="offer">
<div class="header">
<h4>Special Offers</h4>
<p>
There is no friend as loyal as a book!
</p>
</div>
<div class="offer-container">
<div class="offer">
<div class="img">
<a href="Pages/book-detail.html"
><img src="images/godanisa.webp" alt=""
/></a>
</div>
<div class="offer-content">
<h5>GODANISA</h5>
<div class="genre">
<span>biography</span>
<span>Fiction</span>
</div>
<p>
A novel. Bibliographic information. Title, Godaannisa: asoosama.
Author, Dhaabaa Wayyeessaa. Publisher, Fulbaana, 1992. Length, 164 pages
</p>
<small>DHAABAA WOYESAA</small>
<div class="offer-bottom">
<button class="cartbtn">
<i class="fa-solid fa-cart-shopping"></i>Add to cart
</button>
<div class="price">
<strong><span>ETB</span>300</strong>
</div>
</div>
</div>
</div>
<div class="offer">
<div class="img">
<a href="Pages/book-detail.html"
><img src="images/book-3.jpg" alt=""
/></a>
</div>
<div class="offer-content">
<h5>Radical Gardening</h5>
<div class="genre">
<span>biography</span>
<span>thriller</span>
</div>
<p>
you like the idea of gardening as a way of protest,
you should check out George McKay's new book “Radical Gardening
</p>
<small>George McKay</small>
<div class="offer-bottom">
<button class="cartbtn">
<i class="fa-solid fa-cart-shopping"></i>Add to cart
</button>
<div class="price">
<strong><span>ETB</span>180.7</strong>
</div>
</div>
</div>
</div>
<div class="offer">
<div class="img">
<a href="pages/book-detail.html"
><img src="images/book-2.jpg" alt=""
/></a>
</div>
<div class="offer-content">
<h5>The Bright Brothers</h5>
<div class="genre">
<span>biography</span>
<span>thriller</span>
<span>horror</span>
</div>
<p>
The Wright brothers, Orville Wright (August 19, 1871 – January 30, 1948)
and Wilbur Wright (April 16, 1867 – May 30, 1912)
</p>
<small>Kevin Smiley</small>
<div class="offer-bottom">
<button class="cartbtn">
<i class="fa-solid fa-cart-shopping"></i>Add to cart
</button>
<div class="price">
<strong><span>ETB</span>250.7</strong>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="sale">
<div class="header">
<h4>Flash Sale</h4>
<p>
Limited-time offers on select items! Don't miss out on incredible discounts <br>
for a short period only. Hurry, grab your favorites before they're gone!
</p>
</div>
<div class="timer">
<div class="hours">
<span id="hour"></span>
<small>Hours</small>
</div>
<div class="minutes">
<span id="minute"></span>
<small for="minute">Minutes</small>
</div>
<div class="seconds">
<span id="second"></span>
<small for="second">Seconds</small>
</div>
</div>
<div class="book-container">
<div class="book">
<div class="img">
<a href="Pages/book-detail.html"
><img src="images/godanisa.webp" alt="" />
</a>
</div>
<h5>Godanisa</h5>
<small>Thriller</small>
<div class="price">
<span>ETB 220</span>
<span><strike>ETB 300</strike></span>
</div>
</div>
<div class="book">
<div class="img">
<a href="Pages/book-detail.html"
><img src="images/wolaita.jpg" alt=""
/></a>
</div>
<h5>ISHATAMU LOMIYA</h5>
<small>Thriller</small>
<div class="price">
<span>$150</span>
<span><strike>ETB 250.00</strike></span>
</div>
</div>
<div class="book">
<div class="img">
<a href="Pages/book-detail.html"
><img src="images/fiker2.jpg" alt=""
/></a>
</div>
<h5>LOVE TO GRAVE</h5>
<small>Thriller</small>
<div class="price">
<span>ETB 230</span>
<span><strike>ETB 350.00</strike></span>
</div>
</div>
<div class="book">
<div class="img">
<a href="Pages/book-detail.html"
><img src="images/gurage.jpg" alt=""
/></a>
</div>
<h5>THE GURAGE</h5>
<small>Thriller</small>
<div class="price">
<span>ETB 188</span>
<span><strike>ETB 230</strike></span>
</div>
</div>
<div class="book">
<div class="img">
<a href="Pages/book-detail.html"
><img src="images/tigray.jpg" alt="" />
</a>
</div>
<h5>The Giver</h5>
<small>Thriller</small>
<div class="price">
<span>ETB 178</span>
<span><strike>ETB 260</strike></span>
</div>
</div>
</div>
</section>
<section class="book-sale">
<div class="heading">
<h4>Books On Sale</h4>
<div class="arrowbtn">
<i id="left" class="fa-solid fa-angle-left"></i>
<i id="right" class="fa-solid fa-angle-right"></i>
</div>
</div>
<div class="book-container">
<div class="wrapper">
<ul class="carousel">
<li class="card">
<div class="img">
<a href="Pages/book-detail.html"><img src="images/book-1.jpg" alt="" /></a>
<span class="badge">50%</span>
</div>
<h5>The Giver</h5>
<div class="genre">
<span>adventure,</span><span>survival</span>
</div>
<div class="footer">
<span class="star"><i class="fa fa-star"></i> 4.7</span>
<div class="price">
<span>ETB 145.4</span>
<span><strike>ETB 190.4</strike></span>
</div>
</div>
</li>
<li class="card">
<div class="img">
<a href="Pages/book-detail.html"><img src="images/GODANISA.WEBP" alt="" /></a>
<span class="badge">50%</span>
</div>
<h5>GODANISA ...</h5>
<div class="genre">
<span>adventure,</span><span>survival</span>
</div>
<div class="footer">
<span class="star"><i class="fa fa-star"></i> 4.7</span>
<div class="price">
<span>ETB 245.4</span>
<span><strike>ETB 290.4</strike></span>
</div>
</div>
</li>
<li class="card">
<div class="img">
<a href="Pages/book-detail.html"><img src="images/piasa.jpg" alt="" /></a>
<span class="badge">50%</span>
</div>
<h5>PIASA ...</h5>
<div class="genre">
<span>adventure,</span><span>survival</span>
</div>
<div class="footer">
<span class="star"><i class="fa fa-star"></i> 4.7</span>
<div class="price">
<span>ETB 145.4</span>
<span><strike>ETB 190.4</strike></span>
</div>
</div>
</li>
<li class="card">
<div class="img">
<a href="Pages/book-detail.html"><img src="images/book-2.jpg" alt="" /></a>
<span class="badge">50%</span>
</div>
<h5>The Wright ...</h5>
<div class="genre">
<span>adventure,</span><span>survival</span>
</div>
<div class="footer">
<span class="star"><i class="fa fa-star"></i> 4.7</span>
<div class="price">
<span>ETB 245.4</span>
<span><strike>ETB 290.4</strike></span>
</div>
</div>
</li>
<li class="card">
<div class="img">
<a href="Pages/book-detail.html"><img src="images/book-9.jpg" alt="" /></a>
<span class="badge">50%</span>
</div>
<h5>The Ruins Of...</h5>
<div class="genre">
<span>adventure,</span><span>survival</span>
</div>
<div class="footer">
<span class="star"><i class="fa fa-star"></i> 4.7</span>
<div class="price">
<span>ETB 145.4</span>
<span><strike>ETB 190.4</strike></span>
</div>
</div>
</li>
<li class="card">
<div class="img">
<a href="Pages/book-detail.html"><img src="images/book-10.jpg" alt="" /></a>
<span class="badge">50%</span>
</div>
<h5>Percy Jackson</h5>
<div class="genre">
<span>adventure,</span><span>survival</span>
</div>
<div class="footer">
<span class="star"><i class="fa fa-star"></i> 4.7</span>
<div class="price">
<span>ETB 145.4</span>
<span><strike>ETB 190.4</strike></span>
</div>
</div>
</li>
<li class="card">
<div class="img">
<a href="Pages/book-detail.html"><img src="images/book-5.jpg" alt="" /></a>
<span class="badge">50%</span>
</div>
<h5>To kill a...</h5>
<div class="genre">
<span>adventure,</span><span>survival</span>
</div>
<div class="footer">
<span class="star"><i class="fa fa-star"></i> 4.7</span>
<div class="price">
<span>ETB 145.4</span>
<span><strike>ETB 190.4</strike></span>
</div>
</div>
</li>
<li class="card">
<div class="img">
<a href="Pages/book-detail.html"><img src="images/fiker2.jpg" alt="" /></a>
<span class="badge">50%</span>
</div>
<h5>Love to Grave</h5>
<div class="genre">
<span>adventure,</span><span>survival</span>
</div>
<div class="footer">
<span class="star"><i class="fa fa-star"></i> 4.7</span>
<div class="price">
<span>ETB 145.4</span>
<span><strike>ETB 190.4</strike></span>
</div>
</div>
</li>
<li class="card">
<div class="img">
<a href="Pages/book-detail.html"><img src="images/book-7.jpg" alt="" /></a>
<span class="badge">50%</span>
</div>
<h5>Heroes of ...</h5>
<div class="genre">
<span>adventure,</span><span>survival</span>
</div>
<div class="footer">
<span class="star"><i class="fa fa-star"></i> 4.7</span>
<div class="price">
<span>ETB 145.4</span>
<span><strike>ETB 190.4</strike></span>
</div>
</div>
</li>
</ul>
</div>
</div>
</section>
<section class="feature">
<div class="main">
<div class="content">
<h4>Featured Books</h4>
<p>
Dive into the gripping tale of love and betrayal in 'The Secret Garden', <br>
a timeless classic by Frances Hodgson Burnett. Follow young Mary Lennox as she discovers<br>
a hidden sanctuary and unlocks the mysteries of the enchanting garden.<br>
</p>
<div class="featured-book-card">
<div class="img">
<a href="pages/book-detail.html"><img src="images/sihu.png" alt="" /></a>
</div>
<div class="card-description">
<div class="card-header">
<div class="icon">
<i class="fa-regular fa-bookmark"></i>
<i class="fa fa-star"></i>
</div>
<div class="title">
<h5>ፍቅር እስከ መቃብር</h5>
<small>Tragedy</small>
</div>
</div>
<div class="card-body">
<h6>Synopsis</h6>
<p>
Love to the Grave (Amharic: ፍቅር እስከ መቃብር) is an Amharic novel by <br>
Haddis Alemayehu published in 1968. It is one of the best known novels in <br>
Ethiopia and is considered a classic of Ethiopian literature. <br>
The novel gained popularity largely due to its widespread dissemination on Ethiopian radio during the Derg regime.
</p>
<div class="author-year">
<div class="author">
<small>Written by</small>
<strong>Haddis Alemayehu (Amharic: ሐዲስ ዓለማየሁ)</strong>
</div>
<div class="year">
<small>Year</small>
<strong>1968</strong>
</div>
</div>
</div>
<div class="card-footer">
<div class="price">
<span>$84.78</span>
<strike>$90.00</strike>
</div>
<div class="cartbtn">
<button><i class="fa-solid fa-cart-shopping"></i>Add</button>
</div>
</div>
</div>
</div>
</div>
<div class="book-section">
<div class="container">
<div class="img">
<a href="pages/book-detail.html"><img src="images/tigray.jpg" alt="" /></a>
</div>
<div class="img">
<a href="pages/book-detail.html"><img src="images/book-1.jpg" alt="" /></a>
</div>
<div class="img">
<a href="pages/book-detail.html"><img src="images/zigora.webp" alt="" /></a>
</div>
<div class="img">
<a href="pages/book-detail.html"><img src="images/book-4.jpg" alt="" /></a>
</div>
<div class="img">
<a href="pages/book-detail.html"><img src="images/book-5.jpg" alt="" /></a>
</div>
<div class="img">
<a href="pages/book-detail.html"><img src="images/godanisa.webp" alt="" /></a>
</div>
</div>
</div>
</div>
<div class="circle-1"></div>
<div class="circle-2"></div>
</section>
<section class="news">
<div class="heading">
<div class="title">
<h4>Latest News</h4>
<p>
"Stay informed with the latest headlines and breaking news updates from around the globe. <br>
From politics to entertainment, sports to technology, our comprehensive coverage keeps you up-to-date <br> on everything that matters.
</p>
</div>
<div class="btn">
<button>View More <i class="fa-solid fa-arrow-right"></i></button>
</div>
</div>
<div class="news-container">
<div class="post">
<div class="img">
<img src="images/reader1.gif" alt="" />
</div>
<h5>Why reading is important for our children?</h5>
<p>
"Reading cultivates critical thinking, boosts vocabulary, and enhances communication skills in children,
<a href="">Continue reading</a>
</p>
<div class="post-footer">
<div class="img">
<img src="images/rob1.png" alt="" />
</div>
<div class="details">
<strong>Robsan Damisew</strong>
<small>5 August 2020</small>
</div>
</div>
</div>
<div class="post">
<div class="img">
<img src="images/news-2.webp" alt="" />
</div>
<h5>What technique is good for reading books?</h5>
<p>
One effective technique for reading books is the SQ3R method:
Survey:
Question:
<a href="">Continue reading</a>
</p>
<div class="post-footer">
<div class="img">
<img src="images/leul.jpg" alt="" />
</div>
<div class="details">
<strong>Leul Belayneh</strong>
<small>5 August 2020</small>
</div>
</div>
</div>
<div class="post">
<div class="img">
<img src="images/news-3.jpg" alt="" />
</div>
<h5>Why reading is important for our children?</h5>
<p>
In twilight's embrace, dreams softly stir,
Whispers of adventure, a world to confer.
<a href="">Continue reading</a>
</p>
<div class="post-footer">
<div class="img">
<img src="images/siraw.jpg" alt="" />
</div>
<div class="details">
<strong>Sirawdink Tadele</strong>
<small>5 August 2020</small>
</div>
</div>
</div>
<div class="post">
<div class="img">
<img src="images/news-4.jpg" alt="" />
</div>
<h5>Why reading is important for our children?</h5>
<p>
Stars weave tales in the tapestry of night, As shadows dance, bathed in moonlight's light.
<a href="">Continue reading</a>
</p>
<div class="post-footer">
<div class="img">
<img src="images/kala.jpg" alt="" />
</div>
<div class="details">
<strong>Kaleb Zewdu</strong>
<small>5 August 2020</small>
</div>
</div>
</div>
</div>
</section>
<section class="countdown">
<div class="container">
<div class="customer counter">
<div class="icon">
<i class="fa-solid fa-user-group"></i>
</div>
<div class="content">
<h4 class="count">125,663</h4>
<small>Happy Customers</small>
</div>
</div>
<div class="book counter">
<div class="icon">
<i class="fa-solid fa-book"></i>
</div>
<div class="content">
<h4 class="count">50,672</h4>
<small>Book Collections</small>
</div>
</div>
<div class="store counter">
<div class="icon">
<i class="fa-solid fa-store"></i>
</div>
<div class="content">
<h4 class="count">1,562</h4>
<small>Our Stores</small>
</div>
</div>
<div class="writer counter">
<div class="icon">
<i class="fa-solid fa-feather"></i>
</div>
<div class="content">
<h4 class="count">457</h4>
<small>Famous Writer</small>
</div>
</div>
</div>
</section>
<section class="subscription">
<div class="container">
<h4>
Subscribe our newsletter for Latest <br />
books updates
</h4>
<div class="input">
<input type="text" placeholder="Type your email here" />
<button>subscribe</button>
</div>
</div>
<div class="circle-1"></div>
<div class="circle-2"></div>
</section>
<footer>
<div class="container">
<div class="logo-description">
<div class="logo">
<div class="img">
<img src="images/logorob.png" alt="" />
</div>
<div class="title">
<h4>CODEX</h4>
<small>Book Store Website</small>
</div>
</div>
<div class="logo-body">
<p>
A reader lives a thousand lives before he dies . . . The man who never reads lives only one
</p>
</div>
<div class="social-links">
<h4>Follow Us</h4>
<ul class="links">
<li>
<a href=""><i class="fa-brands fa-facebook-f"></i></a>
</li>
<li>
<a href=""><i class="fa-brands fa-youtube"></i></a>
</li>
<li>
<a href=""><i class="fa-brands fa-twitter"></i></a>
</li>
<li>
<a href=""><i class="fa-brands fa-linkedin"></i></a>
</li>
<li>
<a href=""><i class="fa-brands fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
<div class="categories list">
<h4>Book Categories</h4>
<ul>
<li><a href="Pages/book-filter.html">Action</a></li>
<li><a href="Pages/book-filter.html">Adventure</a></li>
<li><a href="Pages/book-filter.html">Comedy</a></li>
<li><a href="Pages/book-filter.html">Crime</a></li>
<li><a href="Pages/book-filter.html">Drama</a></li>
<li><a href="Pages/book-filter.html">Fantasy</a></li>
<li><a href="Pages/book-filter.html">Horror</a></li>
</ul>
</div>
<div class="quick-links list">
<h4>Quick Links</h4>
<ul>
<li><a href="index.html">About Us</a></li>
<li><a href="pages/contact.html">Contact Us</a></li>
<li><a href="pages/book-filter.html">Products</a></li>
<li><a href="pages/login.html">Login</a></li>
<li><a href="pages/registration.html">Sign Up</a></li>
<li><a href="pages/cart-item.html">Cart</a></li>
<li><a href="pages/checkout.html">Checkout</a></li>
</ul>
</div>
<ul>
<li>
<a href=""
><i class="fa-solid fa-location-dot"></i>wolaita sodo, ethiopia</a
>
</li>
<li>
<a href=""><i class="fa-solid fa-phone"></i>+251996881921</a>
</li>
<li>
<a href=""
><i class="fa-solid fa-envelope"></i>robsanyeabsra@gmail.com</a
>
</li>
</ul>
</div>
</div>
</footer>
<button class="back-to-top"><i class="fa-solid fa-chevron-up"></i></button>
<script src="js/back-to-top.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Counter-Up/1.0.0/jquery.counterup.min.js"></script>
<script src="js/script.js"></script>
<script src="js/repeat-js.js"></script>
<script src="js/add-to-cart.js"></script>
<script src="https://code.jquery.com/jquery-3.6.3.js"></script>
</body>
</html>