-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1318 lines (1229 loc) · 45.5 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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BBC HomePage</title>
<link
rel="icon"
type="image/x-icon"
href="/images/Icons/favicon-32x32.png"
/>
<script
src="https://kit.fontawesome.com/9dd4dc3dde.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="/styles/style.css" />
<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Drawer -->
<div class="drawer">
<div class="search">
<input
placeholder="Search news, topics and more"
type="text"
name=""
id=""
/>
<i class="fa-solid fa-magnifying-glass"></i>
</div>
<div class="navBtn">
<button id="register">Register</button>
<button id="signIn">Sign In</button>
</div>
<div class="drawerLinks">
<div><a href="">Home</a></div>
<div><a href="">News</a></div>
<div><a href="">Sports</a></div>
<div><a href="">Business</a></div>
<div><a href="">Innovation</a></div>
<div><a href="">Culture</a></div>
<div><a href="">Travel</a></div>
<div><a href="">Earth</a></div>
<div><a href="">Video</a></div>
<div><a href="">Live</a></div>
<div><a href="">Audio</a></div>
<div><a href="">Weather</a></div>
</div>
</div>
<!-- NAVBAR -->
<div>
<div class="navBar">
<div class="navOpt">
<i class="fa-solid fa-bars" id="searchIcon" onclick="drawer()"></i>
<i class="fa-solid fa-magnifying-glass" id="magnifyingIcon"></i>
<i class="fas fa-times" id="crossIcon" onclick="drawer()"></i>
</div>
<div class="logoDiv">
<img id="logo" src="/images/logo.png" alt="logo" />
</div>
<div class="navBtn">
<button id="register">Register</button>
<button id="signIn">Sign In</button>
</div>
</div>
</div>
<!-- Categories -->
<div class="categories">
<a href="#">Home</a>
<a href="#">News</a>
<a href="#">Sport</a>
<a href="#">Business</a>
<a href="#">Innovation</a>
<a href="#">Culture</a>
<a href="#">Travel</a>
<a href="#">Earth</a>
<a href="#">Video</a>
<a href="#">Live</a>
</div>
<div class="doc">
<!-- Section 1 -->
<div class="section1">
<div class="leftSide">
<a href="#">
<img src="/images/Sec1/2.webp" alt="image2" />
<div class="leftsideDetail">
<h3>Netanyahu vows to follow through with Rafah attack</h3>
<p id="leftsideDetailp">
The Israeli prime minister says the invasion will proceed "with
or without" a truce with Hamas.
</p>
<p class="type">15 hrs ago | <span>NEWS</span> Middle East</p>
</div>
</a>
<a href="#">
<img src="/images/Sec1/3.webp" alt="image3" />
<div class="leftsideDetail">
<h3 id="top">
<div id="blink"></div>
<span id="topLive">LIVE</span> Columbia protest escalates with
campus building takeover
</h3>
<p id="leftsideDetailp">
Dozens of activists at the university in New York have escalated
their demonstration by taking over a building.
</p>
<p class="typelast"><span>NEWS</span></p>
</div>
</a>
</div>
<div class="MiddleSide">
<a href="" id="wholeMidSection">
<img src="/images/Sec1/1.webp" alt="" />
<h1 id="middletop">
<div id="blink2"></div>
<span id="topLive">LIVE</span> Trump threatened with jail in gag
order ruling
</h1>
<p id="middlePara">
The judge held Trump in contempt of court for violating the gag
order meant to stop his attacks on jurors and witnesses.
</p>
<p class="ListHead">NEWS</p>
<ul class="list">
<li><a href="#">All you need to know about the trial</a></li>
<li>
<a href="#"
>After the hunt for impartiality, who are the 12 Trump
jurors?</a
>
</li>
<li><a href="#">How strong is the case against Trump?</a></li>
</ul>
</a>
</div>
<div class="RightSide">
<a href="#" id="RightSideAdjust1">
<h3 id="top">
<div id="blink"></div>
<span id="topLive">LIVE</span> Police say boy, 14, killed in
London sword attack
</h3>
<p>
A 36-year-old man is in custody after five people were stabbed in
Hainault, east London, on Tuesday morning.
</p>
<p class="type"><span>NEWS</span></p>
</a>
<a href="#" id="RightSideAdjust2">
<h3>
Secret document says Iran teen molested and killed by security
forces
</h3>
<p>
Revolutionary Guards' papers passed to the BBC give chilling
details of Nika Shakarami’s last movements.
</p>
<p class="type">15 hrs ago | <span>NEWS</span> Middle East</p>
</a>
<a href="#" id="RightSideAdjust3">
<h3>Eight US officers shot, four killed, in home siege</h3>
<p>
A suspect is also dead and two women face questions over one
biggest of the deadliest attacks on law enforcement for years.
</p>
<p class="type">15 hrs ago | <span>NEWS</span> US & Canada</p>
</a>
<a href="#" id="RightSideAdjust4">
<h3>Tensions grow as China ramps up mining for green tech</h3>
<p>
China has taken big stakes in mines across the world extracting
minerals vital to the green economy.
</p>
<p class="leftsidetypelast">15 hrs ago | <span>NEWS</span> World</p>
</a>
</div>
</div>
<div class="seperater"></div>
<!-- section2 -->
<div class="section2">
<h3 class="section2Head">Great Reads</h3>
<div class="section2Elements">
<a href="#">
<div class="imageContainer">
<img src="/images/Sec2/1.webp" alt="image2" />
<h3>How the world's oldest travel story inspired my own</h3>
</div>
<div>
<p>
Travel writer Laura Coffey sets off on an epic adventure to
discover the modern destinations behind The Odyssey, the real
places where myths meet geography.
</p>
<p class="type">15 hrs ago | Travel</p>
</div>
</a>
<a href="#">
<div class="imageContainer">
<img src="/images/Sec2/2.webp" alt="image3" />
<h3 id="top">These tricks make wind farms more bird-friendly</h3>
</div>
<div>
<p>
Wind turbines can pose a deadly risk to migrating birds, but
there are ways to dramatically reduce crashes.
</p>
<p class="type">15 hrs ago | Future</p>
</div>
</a>
</div>
</div>
</div>
<!-- Section 3 -->
<div class="section3">
<div class="section3allelements">
<div class="seperater2"></div>
<h3 class="section3Head">Must Watch</h3>
<div class="section3Elements">
<div class="section3Image">
<img src="/images/Sec3/1.webp" alt="sec3image" />
</div>
<div class="section3Detail">
<h1>Why is only 10 percent of the population left-handed?</h1>
<p>
A new study reveals the role of rare gene variants and randomness
in determining left-handedness.
</p>
<button>See More</button>
</div>
</div>
</div>
</div>
<div class="doc">
<!-- Section 4 -->
<div class="section4">
<div class="seperater3"></div>
<h3 class="section4Head">News Video</h3>
<div class="section4Elements">
<a href="#">
<h3>
<i class="fa-solid fa-play"></i> WATCH Protesters seize Columbia
University's Hamilton Hall
</h3>
<p class="leftsidetypelast">17 hrs ago | <span>NEWS</span> World</p>
</a>
<a href="#">
<h3>
<i class="fa-solid fa-play"></i> WATCH BBC on board Philippine
ship hit by Chinese water cannon
</h3>
<p class="leftsidetypelast">1 hrs ago | <span>NEWS</span> Aisa</p>
</a>
<a href="#">
<h3>
<i class="fa-solid fa-play"></i> WATCH Protesters seize Columbia
University's Hamilton Hall
</h3>
<p class="leftsidetypelast">12 hrs ago | <span>NEWS</span> World</p>
</a>
<a href="#">
<h3>
<i class="fa-solid fa-play"></i> WATCH Ukraine's 'Harry Potter
castle' hit in deadly Russian strike
</h3>
<p class="leftsidetypelast">12 hrs ago | <span>NEWS</span> UK</p>
</a>
<a href="#">
<h3>
<i class="fa-solid fa-play"></i> WATCH US cancer patient ‘blessed’
after $1.3bn lottery win
</h3>
<p class="leftsidetypelast">
12 hrs ago | <span>NEWS</span> Germany
</p>
</a>
<a href="#">
<h3>
<i class="fa-solid fa-play"></i> WATCH Charlotte mayor emotional
as three officers killed
</h3>
<p class="leftsidetypelast">12 hrs ago | <span>NEWS</span> India</p>
</a>
</div>
</div>
<div class="section5">
<div class="seperater4"></div>
<h3 class="section5Head">Must Watch</h3>
<div class="section5Elements">
<div class="section5Image">
<img src="/images/Sec5/1.webp" alt="sec5image" />
</div>
<div class="section5Detail">
<h1>Why is only 10 percent of the population left-handed?</h1>
<p>
A new study reveals the role of rare gene variants and randomness
in determining left-handedness.
</p>
<button>See More</button>
</div>
</div>
</div>
<div class="section4">
<div class="section4Elements">
<a href="#">
<h3>UK investigates OnlyFans over children accessing porn</h3>
<p class="leftsidetypelast">15 hrs ago | <span>NEWS</span> World</p>
</a>
<a href="#">
<h3>Beijing tightens grip on China social media giants</h3>
<p class="leftsidetypelast">8 hrs ago | <span>NEWS</span> Asia</p>
</a>
<a href="#">
<h3>Chinese women are teaming up with strangers to save money</h3>
<p class="leftsidetypelast">
1 hrs ago | <span>NEWS</span> US & Canada
</p>
</a>
<a href="#">
<h3>Qantas blunder lets customers view strangers' data</h3>
<p class="leftsidetypelast">5 hrs ago | <span>NEWS</span> Europe</p>
</a>
<a href="#">
<h3>Amazon Prime ads help tech giant drive profits</h3>
<p class="leftsidetypelast">
12 hrs ago | <span>NEWS</span> US & Canada
</p>
</a>
<a href="#">
<h3>Charlotte mayor emotional as three officers killed</h3>
<p class="leftsidetypelast">
14 hrs ago | <span>NEWS</span> US & Canada
</p>
</a>
</div>
</div>
<div class="section5">
<div class="seperater4"></div>
<h3 class="section5Head">Culture</h3>
<div class="section5Elements forSec6">
<div class="section5Image forSec6img">
<img src="/images/Sec5/2.webp" alt="sec5image" />
</div>
<div class="section5Detail forSec6detail">
<h1>Why is only 10 percent of the population left-handed?</h1>
<p>
A new study reveals the role of rare gene variants and randomness
in determining left-handedness.
</p>
<button>See More</button>
</div>
</div>
</div>
<div class="section4">
<div class="section4Elements">
<a href="#">
<h3>US author Paul Auster dies aged 77</h3>
<p class="leftsidetypelast">15 hrs ago | <span>NEWS</span> World</p>
</a>
<a href="#">
<h3>
Gosling and Blunt on sarcasm, stunts and singing at the Oscars
</h3>
<p class="leftsidetypelast">18 hrs ago | <span>NEWS</span> Asia</p>
</a>
<a href="#">
<h3>FKA Twigs uses AI to create deepfake of herself</h3>
<p class="leftsidetypelast">
12 hrs ago | <span>NEWS</span> US & Canada
</p>
</a>
<a href="#">
<h3>Harry Potter fan named Britain's biggest collector</h3>
<p class="leftsidetypelast">
5 hrs ago | <span>NEWS</span> Culture
</p>
</a>
<a href="#">
<h3>Line of Duty actor Brian McCardie dies at 59</h3>
<p class="leftsidetypelast">11 hrs ago | <span>NEWS</span> Wales</p>
</a>
<a href="#">
<h3>Charlotte mayor emotional as three officers killed</h3>
<p class="leftsidetypelast">
14 hrs ago | <span>NEWS</span> US & Canada
</p>
</a>
</div>
</div>
<div class="seperater"></div>
<!-- section2 -->
<div class="section2">
<h3 class="section2Head">Editor's picks</h3>
<div class="section2Elements">
<a href="#">
<img src="/images/Sec2/4.webp" alt="image2" />
<div>
<h3>How the world's oldest travel story inspired my own</h3>
<p>
Travel writer Laura Coffey sets off on an epic adventure to
discover the modern destinations behind The Odyssey, the real
places where myths meet geography.
</p>
<p class="leftsidetypelast">
1 hrs ago | <span>NEWS</span> Canada
</p>
</div>
</a>
<a href="#">
<img src="/images/Sec2/2.webp" alt="image3" />
<div>
<h3 id="top">These tricks make wind farms more bird-friendly</h3>
<p>
Wind turbines can pose a deadly risk to migrating birds, but
there are ways to dramatically reduce crashes.
</p>
<p class="leftsidetypelast">12 hrs ago | <span>NEWS</span> US</p>
</div>
</a>
<a href="#">
<img src="/images/Sec2/5.webp" alt="image3" />
<div>
<h3 id="top">These tricks make wind farms more bird-friendly</h3>
<p>
Wind turbines can pose a deadly risk to migrating birds, but
there are ways to dramatically reduce crashes.
</p>
<p class="leftsidetypelast">
14 hrs ago | <span>NEWS</span> Germany
</p>
</div>
</a>
</div>
</div>
<div class="section5">
<div class="seperater4"></div>
<h3 class="section5Head">Earth</h3>
<div class="section5Elements">
<div class="section5Image">
<img src="/images/Sec5/3.webp" alt="sec5image" />
</div>
<div class="section5Detail">
<h1>The women saving crumbling Tibetan monasteries</h1>
<p>
Climate change was ravaging the stunning Tibetan heritage of the
Himalayas – now the 14th Century monasteries are being restored.
</p>
<button>See More</button>
</div>
</div>
</div>
<div class="section4">
<div class="section4Elements">
<a href="#">
<h3>Residents stranded on rooftops after deadly Brazil floods</h3>
<p class="leftsidetypelast">
Just in | <span>NEWS</span> Latin America
</p>
</a>
<a href="#">
<h3>Floods maroon tourists in Kenya's Maasai Mara</h3>
<p class="leftsidetypelast">Just in | <span>NEWS</span> Africa</p>
</a>
<a href="#">
<h3>Plastic-eating bacteria can help waste self-destruct</h3>
<p class="leftsidetypelast">
1 day ago | <span>NEWS</span> Science
</p>
</a>
<a href="#">
<h3>These tricks make wind farms more bird-friendly</h3>
<p class="leftsidetypelast">7 hrs ago | <span>NEWS</span> Future</p>
</a>
<a href="#">
<h3>Tensions grow as China ramps up mining for green tech</h3>
<p class="leftsidetypelast">2 days ago | <span>NEWS</span> World</p>
</a>
</div>
</div>
<div class="section5">
<div class="seperater4"></div>
<h3 class="section5Head">Innovation</h3>
<div class="section5Elements forSec6">
<div class="section5Image forSec6img">
<img src="/images/Sec5/4.webp" alt="sec5image" />
</div>
<div class="section5Detail forSec6detail">
<h1>Apple working to fix alarming iPhone issue</h1>
<p>
Users have been reporting unexpected lie-ins after the alarms on
their phones failed to go off.
</p>
<button>See More</button>
</div>
</div>
</div>
<div class="section4">
<div class="section4Elements">
<a href="#">
<h3>How AI is testing the boundaries of the human mind</h3>
<p class="leftsidetypelast">4 hrs ago | <span>NEWS</span> Future</p>
</a>
<a href="#">
<h3>WATCH AI v The Mind: Who has the edge?</h3>
<p class="leftsidetypelast">7 hrs ago | <span>NEWS</span> AI</p>
</a>
<a href="#">
<h3>Tens of millions secretly use WhatsApp despite bans</h3>
<p class="leftsidetypelast">
19 hrs ago | <span>NEWS</span> Technology
</p>
</a>
<a href="#">
<h3>Binance crypto boss sentenced to 4 months in prison</h3>
<p class="leftsidetypelast">
23 hrs ago | <span>NEWS</span> Technology
</p>
</a>
<a href="#">
<h3>Erling Haaland becomes character in Clash of Clans</h3>
<p class="leftsidetypelast">1 day ago | <span>NEWS</span> Arts</p>
</a>
</div>
</div>
<div class="seperater"></div>
<!-- section2 -->
<div class="section2">
<h3 class="section2Head">Science and health</h3>
<div class="section2Elements">
<a href="#">
<img src="/images/Sec2/6.webp" alt="image2" />
<div>
<h3>Scientists work to make healthier white bread</h3>
<p>
The research aimed at lovers of white bread has been funded by
the government to improve the health benefits of UK food.
</p>
<p class="leftsidetypelast">
1 day ago | <span>NEWS</span> Health
</p>
</div>
</a>
<a href="#">
<img src="/images/Sec2/7.webp" alt="image3" />
<div>
<h3 id="top">Doctor assumed disabled woman did not have sex</h3>
<p>
Adults with disabilities describe traumatic experiences trying
to access healthcare.
</p>
<p class="leftsidetypelast">
2 day ago | <span>NEWS</span> Wales
</p>
</div>
</a>
</div>
</div>
</div>
<div class="section3">
<div class="section3allelements">
<div class="seperater2" id="section2space"></div>
<div class="section2">
<div class="section2Elements">
<a href="#">
<img src="/images/Sec2/4.webp" alt="image2" />
<div class="section2ElementsBlack">
<h3>How the world's oldest travel story inspired my own</h3>
<p>
Travel writer Laura Coffey sets off on an epic adventure to
discover the modern destinations behind The Odyssey, the real
places where myths meet geography.
</p>
</div>
<p class="leftsidetypelast2">1 hrs ago | Canada</p>
</a>
<a href="#">
<img src="/images/Sec2/2.webp" alt="image3" />
<div class="section2ElementsBlack">
<h3 id="top">
These tricks make wind farms more bird-friendly
</h3>
<p>
Wind turbines can pose a deadly risk to migrating birds, but
there are ways to dramatically reduce crashes.
</p>
</div>
<p class="leftsidetypelast2">12 hrs ago | US</p>
</a>
<a href="#">
<img src="/images/Sec2/1.webp" alt="image3" />
<div class="section2ElementsBlack">
<h3 id="top">
How the world's oldest travel story inspired my own
</h3>
<p>
Travel writer Laura Coffey sets off on an epic adventure to
discover the modern destinations behind The Odyssey, the real
places where myths meet geography.
</p>
</div>
<p class="leftsidetypelast2">12 hrs ago | US</p>
</a>
<a href="#">
<img src="/images/Sec2/5.webp" alt="image3" />
<div class="section2ElementsBlack">
<h3 id="top">
These tricks make wind farms more bird-friendly
</h3>
<p>
Wind turbines can pose a deadly risk to migrating birds, but
there are ways to dramatically reduce crashes.
</p>
</div>
<p class="leftsidetypelast2">14 hrs ago | Germany</p>
</a>
</div>
</div>
<div class="seperater2"></div>
</div>
</div>
<div class="doc">
<div class="section5">
<div class="seperater4"></div>
<h3 class="section5Head">Sport</h3>
<div class="section5Elements forSec6">
<div class="section5Image forSec6img">
<img src="/images/Sec5/5.webp" alt="sec5image" />
</div>
<div class="section5Detail forSec6detail">
<h1>Red Bull confirm exit of design chief Newey</h1>
<p>
Red Bull confirm their design chief Adrian Newey will leave the
team in 2025.
</p>
<button>See More</button>
</div>
</div>
</div>
<div class="section4">
<div class="section4Elements">
<a href="#">
<h3>How AI is testing the boundaries of the human mind</h3>
<p class="leftsidetypelast">4 hrs ago | Future</p>
</a>
<a href="#">
<h3>WATCH AI v The Mind: Who has the edge?</h3>
<p class="leftsidetypelast">7 hrs ago | AI</p>
</a>
<a href="#">
<h3>Tens of millions secretly use WhatsApp despite bans</h3>
<p class="leftsidetypelast">19 hrs ago | Technology</p>
</a>
<a href="#">
<h3>Binance crypto boss sentenced to 4 months in prison</h3>
<p class="leftsidetypelast">23 hrs ago | Technology</p>
</a>
<a href="#">
<h3>Erling Haaland becomes character in Clash of Clans</h3>
<p class="leftsidetypelast">1 day ago | Arts</p>
</a>
</div>
</div>
<div class="section5">
<div class="seperater4"></div>
<h3 class="section5Head">Travel</h3>
<div class="section5Elements">
<div class="section5Image">
<img src="/images/Sec5/6.webp" alt="sec5image" />
</div>
<div class="section5Detail">
<h1>How the world's oldest travel story inspired my own</h1>
<p>
Travel writer Laura Coffey sets off on an epic adventure to
discover the modern destinations behind The Odyssey, the real
places where myths meet geography.
</p>
<button>See More</button>
</div>
</div>
</div>
</div>
<div class="section3">
<div class="section3allelements">
<div class="seperater2" id="section2space"></div>
<div class="section2">
<div class="section2Elements">
<a href="#">
<img src="/images/Sec2/4.webp" alt="image2" />
<div class="section2ElementsBlack">
<h3>How the world's oldest travel story inspired my own</h3>
<p>
Travel writer Laura Coffey sets off on an epic adventure to
discover the modern destinations behind The Odyssey, the real
places where myths meet geography.
</p>
</div>
<p class="leftsidetypelast2">1 hrs ago | Canada</p>
</a>
<a href="#">
<img src="/images/Sec2/2.webp" alt="image3" />
<div class="section2ElementsBlack">
<h3 id="top">
These tricks make wind farms more bird-friendly
</h3>
<p>
Wind turbines can pose a deadly risk to migrating birds, but
there are ways to dramatically reduce crashes.
</p>
</div>
<p class="leftsidetypelast2">12 hrs ago | US</p>
</a>
<a href="#">
<img src="/images/Sec2/1.webp" alt="image3" />
<div class="section2ElementsBlack">
<h3 id="top">
How the world's oldest travel story inspired my own
</h3>
<p>
Travel writer Laura Coffey sets off on an epic adventure to
discover the modern destinations behind The Odyssey, the real
places where myths meet geography.
</p>
</div>
<p class="leftsidetypelast2">12 hrs ago | US</p>
</a>
<a href="#">
<img src="/images/Sec2/5.webp" alt="image3" />
<div class="section2ElementsBlack">
<h3 id="top">
These tricks make wind farms more bird-friendly
</h3>
<p>
Wind turbines can pose a deadly risk to migrating birds, but
there are ways to dramatically reduce crashes.
</p>
</div>
<p class="leftsidetypelast2">14 hrs ago | Germany</p>
</a>
</div>
</div>
<div class="seperater2"></div>
</div>
</div>
<div class="doc">
<div class="section4">
<div class="seperater3"></div>
<h3 class="section4Head">World news</h3>
<div class="section4Elements">
<a href="#">
<h3>Ghana celebrates as looted artefacts put on display</h3>
<p class="leftsidetypelast">3 hrs ago | <span>NEWS</span> Africa</p>
</a>
<a href="#">
<h3>Georgia rocked by clashes over 'Russian-inspired' bill</h3>
<p class="leftsidetypelast">4 hrs ago | <span>NEWS</span> Europe</p>
</a>
<a href="#">
<h3>
Ukrainian, 98, tells BBC of six-mile walk to escape Russians
</h3>
<p class="leftsidetypelast">4 hrs ago | <span>NEWS</span> Europe</p>
</a>
<a href="#">
<h3>Key mining town seized - DR Congo rebels</h3>
<p class="leftsidetypelast">4 hrs ago | <span>NEWS</span> Africa</p>
</a>
<a href="#">
<h3>'I watch my back': Spike in BBC journalists living in exile</h3>
<p class="leftsidetypelast">4 hrs ago | <span>NEWS</span> World</p>
</a>
</div>
</div>
<div class="section4">
<div class="seperater3"></div>
<h3 class="section4Head">US and Canada news</h3>
<div class="section4Elements">
<a href="#">
<h3>What do student protesters at US universities want?</h3>
<p class="leftsidetypelast">
4 hrs ago | <span>NEWS</span> US & Canada
</p>
</a>
<a href="#">
<h3>Weinstein to appear in court after conviction quashed</h3>
<p class="leftsidetypelast">
10 hrs ago | <span>NEWS</span> US & Canada
</p>
</a>
<a href="#">
<h3>WATCH How Gaza campus protests spread across the US</h3>
<p class="leftsidetypelast">
18 hrs ago | <span>NEWS</span> US & Canada
</p>
</a>
<a href="#">
<h3>Crackdown or compromise? A tale of two US campus protests</h3>
<p class="leftsidetypelast">
18 hrs ago | <span>NEWS</span> US & Canada
</p>
</a>
<a href="#">
<h3>US moves to reclassify marijuana as less dangerous</h3>
<p class="leftsidetypelast">
20 hrs ago | <span>NEWS</span> US & Canada
</p>
</a>
</div>
</div>
<div class="section4">
<div class="seperater3"></div>
<h3 class="section4Head">UK news</h3>
<div class="section4Elements">
<a href="#">
<h3>Sunak rules out asylum seeker returns from Ireland</h3>
<p class="leftsidetypelast">
3 hrs ago | <span>NEWS</span> UK Politics
</p>
</a>
<a href="#">
<h3>Civil servants sue government over Rwanda law</h3>
<p class="leftsidetypelast">
3 hrs ago | <span>NEWS</span> UK Politics
</p>
</a>
<a href="#">
<h3>Students occupy UK campuses in protest over Gaza</h3>
<p class="leftsidetypelast">4 hrs ago | <span>NEWS</span> UK</p>
</a>
<a href="#">
<h3>'Truly horrific': How the Hainault attack unfolded</h3>
<p class="leftsidetypelast">4 hrs ago | <span>NEWS</span> UK</p>
</a>
<a href="#">
<h3>DFDS to prioritise reliability in contract bid</h3>
<p class="leftsidetypelast">5 hrs ago | <span>NEWS</span> UK</p>
</a>
</div>
</div>
<div class="section4">
<div class="seperater3"></div>
<h3 class="section4Head">Business</h3>
<div class="section4Elements">
<a href="#">
<h3>Boris Becker no longer bankrupt, court says</h3>
<p class="leftsidetypelast">
4 hrs ago | <span>NEWS</span> Business
</p>
</a>
<a href="#">
<h3>Ex-Camelot boss named as new Post Office chairman</h3>
<p class="leftsidetypelast">
8 hrs ago | <span>NEWS</span> Business
</p>
</a>
<a href="#">
<h3>House prices fall as lenders raise mortgage rates</h3>
<p class="leftsidetypelast">
12 hrs ago | <span>NEWS</span> Business
</p>
</a>
<a href="#">
<h3>Beijing tightens grip on China social media giants</h3>
<p class="leftsidetypelast">
13 hrs ago | <span>NEWS</span> Business
</p>
</a>
<a href="#">
<h3>
WATCH Tatti Lashes: The school friends who built a beauty empire
</h3>
<p class="leftsidetypelast">
21 hrs ago | <span>NEWS</span> Business
</p>
</a>
</div>
</div>
<div class="section4">
<div class="seperater3"></div>
<h3 class="section4Head">Culture</h3>
<div class="section4Elements">
<a href="#">
<h3>WATCH Paul Auster: Americans are divided like never before</h3>
<p class="leftsidetypelast">
5 hrs ago | <span>NEWS</span> Culture
</p>
</a>
<a href="#">
<h3>Four presenters begin legal action against BBC</h3>
<p class="leftsidetypelast">
7 hrs ago | <span>NEWS</span> Entertainment & Arts
</p>
</a>
<a href="#">
<h3>Where and when is Eurovision 2024 taking place?</h3>
<p class="leftsidetypelast">
8 hrs ago | <span>NEWS</span> Entertainment & Arts
</p>
</a>
<a href="#">
<h3>The Russian hit film that dodged the censors</h3>
<p class="leftsidetypelast">
10 hrs ago | <span>NEWS</span> Entertainment & Arts
</p>
</a>
<a href="#">
<h3>Sangita Myska leaves LBC in schedule shake-up</h3>
<p class="leftsidetypelast">
11 hrs ago | <span>NEWS</span> Culture
</p>
</a>
</div>
</div>