-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcnn.htm
867 lines (860 loc) · 55.7 KB
/
cnn.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <title>Breaking News, Latest News And Videos | CNN</title> -->
<title>DOc</title>
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="body.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="icon" type="image/png" href="logo.png">
</head>
<body>
<div id = banner>
<a href="#"><img src="bannerimg.jpeg" alt="Advertisement"></a>
</div>
<nav id="navBelowBanner"class="navbar navbar-dark">
<div id="navbar"class="container-fluid">
<a href="#beforesearchBar"><button class="navbar-toggler" type="button">
<span class="navbar-toggler-icon"></span></a>
</button>
<a href="#"><img id = "logo" src="logo.png" alt="logo"></a>
<a id = "headerOptions" class="navbar-brand" href="#">US</a>
<a id = "headerOptions" class="navbar-brand" href="#">World</a>
<a id = "headerOptions" class="navbar-brand" href="#">Politics</a>
<a id = "headerOptions" class="navbar-brand"href="#">Buisness</a>
<a id = "headerOptions" class="navbar-brand"href="#">Opinioin</a>
<a id = "headerOptions" class="navbar-brand"href="#">Health</a>
<a id = "headerOptions" class="navbar-brand"href="#">Entertainment</a>
<a id = "headerOptions" class="navbar-brand"href="#">Style</a>
<div id="dropdown">
<a id = "more" class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">More</a>
<ul id="dropDownItems" class="dropdown-menu" >
<li><a id="dropdownOptions" class="dropdown-item" href="#">Travel</a></li>
<li><hr class="dropdown-divider"></li>
<li><a id="dropdownOptions" class="dropdown-item" href="#">Sports</a></li>
<li><hr class="dropdown-divider"></li>
<li><a id="dropdownOptions" class="dropdown-item" href="#">Science</a></li>
<li><hr class="dropdown-divider"></li>
<li><a id="dropdownOptions" class="dropdown-item" href="#">Climate</a></li>
<li><hr class="dropdown-divider"></li>
<li><a id="dropdownOptions" class="dropdown-item" href="#">Weather</a></li>
<li><hr class="dropdown-divider"></li>
<li><a id="dropdownOptions" class="dropdown-item" href="#">Ukraine-Russia War</a></li>
<li><hr class="dropdown-divider"></li>
<li><a id="dropdownOptions" class="dropdown-item" href="#">Israel-Hamas War</a></li>
<li><hr class="dropdown-divider"></li>
<li><a id="dropdownOptions" class="dropdown-item" href="#">Paris Olympics</a></li>
</ul>
</div>
<a id = "headerOptions" class="navbar-brand"href="#">Watch</a>
<a id = "headerOptions" class="navbar-brand"href="#">Listen</a>
<a id = "headerOptions" class="navbar-brand"href="#">Live TV</a>
<a id = "headerOptions" class="navbar-brand"href="#"><img id = "search" src="searchIcon.jpg" alt="search"></a>
<a href="logIn.html"><button id = "signIn" type="button" class="btn btn-dark" onclick="">Sign In</button></a>
</div>
</nav>
<div id="horizontalScroll">
<div id="headerBtns"><button id="scroll-btn-left" class="custom-btn"onclick="scrollToLeft()">‹</button></div>
<div id="scroll-content">
<a id="scroll-Items" class="navbar-brand" href="#">Classified document case</a>
<span> | </span>
<a id="scroll-Items" class="navbar-brand" href="#">Threat of megadisaster</a>
<span> | </span>
<a id="scroll-Items" class="navbar-brand" href="#">Ralf Schumcher comes out as gay</a>
<span> | </span>
<a id="scroll-Items" class="navbar-brand" href="#">India's wedding of the year</a>
<span> | </span>
<a id="scroll-Items" class="navbar-brand" href="#">Electric 90-Passenger Plane</a>
<span> | </span>
<a id="scroll-Items" class="navbar-brand" href="#">Paradise Island</a>
<span> | </span>
<a id="scroll-Items" class="navbar-brand" href="#">Delusional World</a>
<span> | </span>
<a id="scroll-Items" class="navbar-brand" href="#">Way to Mars</a>
</div>
<div id="headerBtns"><button id = "scroll-btn" class="custom-btn"onclick="scrollRight()">›</button></div>
</div>
<!-- //////////////////////////////////////////////////////////////////////// -->
<div class="body">
<div id="news">
<div id="containerNews">
<div class="new1">
<div id="card" style="width: 35rem;">
<a id="newsHeading"class="navbar-brand" href="#">Takeaways from Day 2 of<br> the Republican National Convention</a>
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p class="card-text">Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
<ul ulNews1>
<li><a class="photoCardLinkN" href="#"><span>Live Updates:</span> Day 3 of the 2024 Republican National Convention</a></li>
<li><a class="photoCardLinkN"href="#">Here's how Trump cookies divided this bakery's customers </a>1:25</li>
<li><a class="photoCardLinkN"href="#">JD Vance, the new heir to Trump's MAGA movement, steps into the spotlight</a></li>
<li><a class="photoCardLinkN"href="#">'It's false:' CNN fact-checks speeches on day two of the RNC 3:36</a></li>
<li><a class="photoCardLinkN"href="#">Usha Vance is 4th person of South Asian descent to be part of 2024 presidential campaign. Why that matters</a></li>
<li><a class="photoCardLinkN"href="#">See which RNC speaker Van Jones says 'gave the speech of the night' </a>2:20</li>
<li><a class="photoCardLinkN"href="#">Elon Musk is going all-in on Donald Trump </a></li>
<li><a class="photoCardLinkN"href="#">See Trump react to Haley telling her supporters to back him </a>1:53</li>
<li><a class="photoCardLinkN"href="#">Why Europe looks at Trump's VP pick with anxiety</a></li>
</ul>
</div>
</div>
</div>
<div class="new2">
<div id="card" style="width: 16rem;">
<a href="#"><img src="photo1Beyonce.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews" href="#"><p class="card-text">Beyoncé stayed in $100,000 per night suite in the Middle East’s ‘best hotel’</p></a>
</div>
</div>
<div id="card" style="width: 16rem;">
<a href="#"><img src="photo1Beyonce.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews" href="#"><p class="card-text">Beyoncé stayed in $100,000 per night suite in the Middle East’s ‘best hotel’</p></a>
</div>
</div>
<div id="card" style="width: 16rem;">
<a href="#"><img src="photo1Beyonce.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews" href="#"><p class="card-text">Beyoncé stayed in $100,000 per night suite in the Middle East’s ‘best hotel’</p></a>
</div>
</div>
</div>
<div class="news3">
<iframe width="300" height="165" src="https://www.youtube.com/embed/uf5e7Jz5ROU?si=yQaJDrrg7vWRgcNP" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<br>
<a class="photoCardLinkNews"href="#">Catch Up On todays global <br>news</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">As cartels take a stake in ‘green gold,’ <br>US and Mexico rethink</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">What dismissal of Alec Baldwin’s ‘Rust’ <br>case could mean </a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">Buckingham Palace is opening up the <br>room behind its famous balcony to the <br>public</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#"><b>Essay:</b> Shelley Duvall is remembered for <br>being the perfect
movie victim.</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">A detailed look at children’s brains might <br>show how sex and gender are different</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">Snacks are getting cheaper as Americans <br>tire of high prices</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">iPhone users in Europe will no longer <br>have to use Apple Pay for mobile <br>payments</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">21 people die as school building <br>collapses in Nigeria when students <br>were taking exam</a>
</div>
</div>
<!-- //////////////////////////////////////////////////////// -->
<div id="containerNews">
<div class="news4">
<div id="progress-bar"class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 6%; height:100%"></div>
</div>
<h6 id="belowProgress">More Top Stories</h6>
<a href="#"><img id="new2Img" src="news2.webp" alt="news2"></a>
<br>
<a id="smallLinks"class="photoCardLinkNews"href="#">Catch Up On todays global <br>news</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">As cartels take a stake in ‘green gold,’ <br>US and Mexico rethink</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">What dismissal of Alec Baldwin’s ‘Rust’ <br>case could mean </a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">Buckingham Palace is opening up the <br>room behind its famous balcony to <br>the public</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#"><b>Essay:</b> Shelley Duvall is remembered <br>for being the perfect
movie victim.</a>
</div>
<div class="new1">
<div id="progress-bar"class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 3%; height:100%"></div>
</div>
<h6 id="belowProgress">Featured</h6>
<div id="card" style="width: 35rem;">
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p >Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
</div>
</div>
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
<hr class="horizontalBarrierNews">
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
</div>
<div id="news5">
<img src="bodyImg.jpeg" alt="bodyIMg">
<hr style="color: white;">
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
<hr class="horizontalBarrierNews">
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
<hr class="horizontalBarrierNews">
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
<hr class="horizontalBarrierNews">
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
</div>
</div>
<div class="advertise">
<a href="#"><img src="bodyAdvertise.jpeg" alt="footerAdvertisement"></a>
</div>
<!-- ///////////////////////////////// -->
<div id="containerNews">
<div class="news4">
<a href="#"><img id="new2Img" src="news2.webp" alt="news2"></a>
<br>
<a id="smallLinks"class="photoCardLinkNews"href="#">Catch Up On todays global <br>news</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">As cartels take a stake in ‘green gold,’ <br>US and Mexico rethink</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">What dismissal of Alec Baldwin’s ‘Rust’ <br>case could mean </a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#">Buckingham Palace is opening up the <br>room behind its famous balcony to <br>the public</a>
<hr class="horizontalBarrierNews">
<a id="smallLinks"class="navbar-brand"href="#"><b>Essay:</b> Shelley Duvall is remembered <br>for being the perfect
movie victim.</a>
</div>
<div class="new1">
<div id="card" style="width: 35rem;">
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p >Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
</div>
</div>
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
<hr class="horizontalBarrierNews">
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
</div>
<div id="news5">
<img src="bodyImg.jpeg" alt="bodyIMg">
<hr style="color: white;">
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
<hr class="horizontalBarrierNews">
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
<hr class="horizontalBarrierNews">
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
<hr class="horizontalBarrierNews">
<div class="horizontalCard">
<div >
<a href="#"><img src="covidIsBack.webp" id="horizontalCardImg" alt="..."></a>
</div>
<div class="col-md-7">
<div class="card-body">
<a id="smallLinkhori" href="#"><p class="card-text">COVID is back. Should we worry?</p></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- //////////////////////////////////// -->
<div id="featured">
<h3 id="photosHeading">Featured Sections</h3>
<!-- <br> -->
<div id="featured1">
<div class="featuredFirst">
<div id="progress-bar"class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 4%; height:100%"></div>
</div>
<h6 id="belowProgress">CNN Buisness</h6>
<div id="card" style="width: 24rem;">
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p class="card-text">Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
<ul ulNews1>
<li><a class="photoCardLinkN" href="#"><span>Live Updates:</span> Day 3 of the 2024 Republican National Convention</a></li>
<li><a class="photoCardLinkN"href="#">Here's how Trump cookies divided this bakery's customers </a>1:25</li>
<li><a class="photoCardLinkN"href="#">JD Vance, the new heir to Trump's MAGA movement, steps into the spotlight</a></li>
<li><a class="photoCardLinkN"href="#">'It's false:' CNN fact-checks speeches on day two of the RNC 3:36</a></li>
<li><a class="photoCardLinkN"href="#">Usha Vance is 4th person of South Asian descent to be part of 2024 presidential campaign. Why that matters</a></li>
<li><a class="photoCardLinkN"href="#">See which RNC speaker Van Jones says 'gave the speech of the night' </a>2:20</li>
</ul>
</div>
</div>
</div>
<div class="featuredFirst">
<div id="progress-bar"class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 4%; height:100%"></div>
</div>
<h6 id="belowProgress">CNN Travel</h6>
<div id="card" style="width: 24rem;">
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p class="card-text">Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
<ul ulNews1>
<li><a class="photoCardLinkN" href="#"><span>Live Updates:</span> Day 3 of the 2024 Republican National Convention</a></li>
<li><a class="photoCardLinkN"href="#">Here's how Trump cookies divided this bakery's customers </a>1:25</li>
<li><a class="photoCardLinkN"href="#">JD Vance, the new heir to Trump's MAGA movement, steps into the spotlight</a></li>
<li><a class="photoCardLinkN"href="#">'It's false:' CNN fact-checks speeches on day two of the RNC 3:36</a></li>
<li><a class="photoCardLinkN"href="#">Usha Vance is 4th person of South Asian descent to be part of 2024 presidential campaign. Why that matters</a></li>
</ul>
</div>
</div>
</div>
<div class="featuredFirst">
<div id="featureAdd"class="col-3">
<a href="#"><img src="featuredAdd.jpeg" alt="advertise"></a>
</div>
</div>
</div>
<div id="featured1">
<div class="featuredFirst">
<div id="progress-bar"class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 4%; height:100%"></div>
</div>
<h6 id="belowProgress">Sports</h6>
<div id="card" style="width: 24rem;">
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p class="card-text">Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
<ul ulNews1>
<li><a class="photoCardLinkN" href="#"><span>Live Updates:</span> Day 3 of the 2024 Republican National Convention</a></li>
<li><a class="photoCardLinkN"href="#">Here's how Trump cookies divided this bakery's customers </a>1:25</li>
<li><a class="photoCardLinkN"href="#">JD Vance, the new heir to Trump's MAGA movement, steps into the spotlight</a></li>
<li><a class="photoCardLinkN"href="#">'It's false:' CNN fact-checks speeches on day two of the RNC 3:36</a></li>
<li><a class="photoCardLinkN"href="#">Usha Vance is 4th person of South Asian descent to be part of 2024 presidential campaign. Why that matters</a></li>
<li><a class="photoCardLinkN"href="#">See which RNC speaker Van Jones says 'gave the speech of the night' </a>2:20</li>
<li><a class="photoCardLinkN"href="#">Elon Musk is going all-in on Donald Trump </a></li>
</ul>
</div>
</div>
</div>
<div class="featuredFirst">
<div id="progress-bar"class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 4%; height:100%"></div>
</div>
<h6 id="belowProgress">Style</h6>
<div id="card" style="width: 24rem;">
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p class="card-text">Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
<ul ulNews1>
<li><a class="photoCardLinkN" href="#"><span>Live Updates:</span> Day 3 of the 2024 Republican National Convention</a></li>
<li><a class="photoCardLinkN"href="#">Here's how Trump cookies divided this bakery's customers </a>1:25</li>
<li><a class="photoCardLinkN"href="#">JD Vance, the new heir to Trump's MAGA movement, steps into the spotlight</a></li>
<li><a class="photoCardLinkN"href="#">'It's false:' CNN fact-checks speeches on day two of the RNC 3:36</a></li>
<li><a class="photoCardLinkN"href="#">Usha Vance is 4th person of South Asian descent to be part of 2024 presidential campaign. Why that matters</a></li>
</ul>
</div>
</div>
</div>
<div class="featuredFirst">
<div id="progress-bar"class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 4%; height:100%"></div>
</div>
<h6 id="belowProgress">Opinion</h6>
<div id="card" style="width: 24rem;">
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p class="card-text">Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
<ul ulNews1>
<li><a class="photoCardLinkN" href="#"><span>Live Updates:</span> Day 3 of the 2024 Republican National Convention</a></li>
<li><a class="photoCardLinkN"href="#">Here's how Trump cookies divided this bakery's customers </a>1:25</li>
<li><a class="photoCardLinkN"href="#">JD Vance, the new heir to Trump's MAGA movement, steps into the spotlight</a></li>
<li><a class="photoCardLinkN"href="#">'It's false:' CNN fact-checks speeches on day two of the RNC 3:36</a></li>
<li><a class="photoCardLinkN"href="#">Usha Vance is 4th person of South Asian descent to be part of 2024 presidential campaign. Why that matters</a></li>
<li><a class="photoCardLinkN"href="#">See which RNC speaker Van Jones says 'gave the speech of the night' </a>2:20</li>
</ul>
</div>
</div>
</div>
</div>
<div id="featured1">
<div class="featuredFirst">
<div id="progress-bar"class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 4%; height:100%"></div>
</div>
<h6 id="belowProgress">US Politics</h6>
<div id="card" style="width: 24rem;">
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p class="card-text">Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
<ul ulNews1>
<li><a class="photoCardLinkN" href="#"><span>Live Updates:</span> Day 3 of the 2024 Republican National Convention</a></li>
<li><a class="photoCardLinkN"href="#">Here's how Trump cookies divided this bakery's customers </a>1:25</li>
<li><a class="photoCardLinkN"href="#">JD Vance, the new heir to Trump's MAGA movement, steps into the spotlight</a></li>
<li><a class="photoCardLinkN"href="#">'It's false:' CNN fact-checks speeches on day two of the RNC 3:36</a></li>
<li><a class="photoCardLinkN"href="#">Usha Vance is 4th person of South Asian descent to be part of 2024 presidential campaign. Why that matters</a></li>
<li><a class="photoCardLinkN"href="#">See which RNC speaker Van Jones says 'gave the speech of the night' </a>2:20</li>
</ul>
</div>
</div>
</div>
<div class="featuredFirst">
<div id="progress-bar"class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 4%; height:100%"></div>
</div>
<h6 id="belowProgress">Science & Health</h6>
<div id="card" style="width: 24rem;">
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p class="card-text">Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
<ul ulNews1>
<li><a class="photoCardLinkN" href="#"><span>Live Updates:</span> Day 3 of the 2024 Republican National Convention</a></li>
<li><a class="photoCardLinkN"href="#">Here's how Trump cookies divided this bakery's customers </a>1:25</li>
<li><a class="photoCardLinkN"href="#">JD Vance, the new heir to Trump's MAGA movement, steps into the spotlight</a></li>
</ul>
</div>
</div>
</div>
<div class="featuredFirst">
<div id="progress-bar"class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 4%; height:100%"></div>
</div>
<h6 id="belowProgress">Tech</h6>
<div id="card" style="width: 24rem;">
<a href="#"><img src="news1.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLinkNews"href="#"><p class="card-text">Once a fierce Trump critic, Haley did a stark about-face pledging her support. Here's what else happened.</p></a>
<ul ulNews1>
<li><a class="photoCardLinkN" href="#"><span>Live Updates:</span> Day 3 of the 2024 Republican National Convention</a></li>
<li><a class="photoCardLinkN"href="#">Here's how Trump cookies divided this bakery's customers </a>1:25</li>
<li><a class="photoCardLinkN"href="#">JD Vance, the new heir to Trump's MAGA movement, steps into the spotlight</a></li>
<li><a class="photoCardLinkN"href="#">'It's false:' CNN fact-checks speeches on day two of the RNC 3:36</a></li>
<li><a class="photoCardLinkN"href="#">Usha Vance is 4th person of South Asian descent to be part of 2024 presidential campaign. Why that matters</a></li>
<li><a class="photoCardLinkN"href="#">See which RNC speaker Van Jones says 'gave the speech of the night' </a>2:20</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- ////////////////////////////////////// -->
<!-- <div id="photos">
<h3 id="photosHeading">Photos You Should See</h3>
<div id="containerPhotos">
<div id="photosDivOuter">
<div id="photosDiv">
<div id="card" style="width: 14rem;">
<a href="#"><img src="photo1Beyonce.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLink" href="#"><p class="card-text">Beyoncé stayed in $100,000 per night suite in the Middle East’s ‘best hotel’</p></a>
</div>
</div>
<div id="card" style="width: 14rem;">
<a href="#"><img src="photo1Beyonce.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLink" href="#"><p class="card-text">Beyoncé stayed in $100,000 per night suite in the Middle East’s ‘best hotel’</p></a>
</div>
</div>
<div id="card" style="width: 14rem;">
<a href="#"><img src="photo1Beyonce.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLink" href="#"><p class="card-text">Beyoncé stayed in $100,000 per night suite in the Middle East’s ‘best hotel’</p></a>
</div>
</div>
</div>
<div id="photosDiv">
<div id="card" style="width: 14rem;">
<a href="#"><img src="photo1Beyonce.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLink" href="#"><p class="card-text">Beyoncé stayed in $100,000 per night suite in the Middle East’s ‘best hotel’</p></a>
</div>
</div>
<div id="card" style="width: 14rem;">
<a href="#"><img src="photo1Beyonce.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLink" href="#"><p class="card-text">Beyoncé stayed in $100,000 per night suite in the Middle East’s ‘best hotel’</p></a>
</div>
</div>
<div id="card" style="width: 14rem;">
<a href="#"><img src="photo1Beyonce.jpg" class="card-img-top" alt="..."></a>
<div class="LargeCard">
<a class="photoCardLink" href="#"><p class="card-text">Beyoncé stayed in $100,000 per night suite in the Middle East’s ‘best hotel’</p></a>
</div>
</div>
</div>
</div>
<div id="photoAdd"class="col-3">
<a href="#"><img src="photosAdvertise.png" alt="advertise"></a>
</div>
</div>
</div> -->
</div>
<!-- //////////////////////////////////////////////////////////////////////// -->
<div id="footer">
<div id="footerAbove">
<h3 id="missed">In Case You Missed It</h3>
<div class="footerAboveContent">
<div id="picDiv">
<a href="#"><img id="footerAboveImg"src="footerAbovePart.webp" alt="Pic"></a>
<a id="belowPicHeading"class="navbar-brand"href="#">The US held of sanctioning the Israeli army unit despite evidence of <br>abuses. Now is forces are shaping the fight in Gaza.</a>
</div>
<div id="links">
<a class="navbar-brand"href="#">As cartels take a stake in ‘green gold,’ US and Mexico <br>rethink how avocados reach American kitchens</a>
<hr class="horizontalBarrier">
<a class="navbar-brand"href="#">What dismissal of Alec Baldwin’s ‘Rust’ case could mean <br>for convicted film armorer Hannah Gutierrez Reed</a>
<hr class="horizontalBarrier">
<a class="navbar-brand"href="#">Buckingham Palace is opening up the room behind its <br>famous balcony to the public for the first time</a>
<hr class="horizontalBarrier">
<a class="navbar-brand"href="#"><b>Essay:</b> Shelley Duvall is remembered for being the perfect
<br>movie victim. But she was so much more</a>
<hr class="horizontalBarrier">
<a class="navbar-brand"href="#">A detailed look at children’s brains might show how sex <br>and gender are different, new study says</a>
<hr class="horizontalBarrier">
<a class="navbar-brand"href="#">Snacks are getting cheaper as Americans tire of high <br>prices</a>
<hr class="horizontalBarrier">
<a class="navbar-brand"href="#">iPhone users in Europe will no longer have to use Apple <br>Pay for mobile payments</a>
<hr class="horizontalBarrier">
<a class="navbar-brand"href="#">21 people die as school building collapses in Nigeria when <br>students were taking exam</a>
</div>
</div>
<div class="advertise">
<a href="#"><img src="footerAdvertisement.jpeg" alt="footerAdvertisement"></a>
</div>
</div>
<hr id="beforesearchBar"class="horizontalBarrier">
<div id="searchBar">
<input type="search" placeholder="Search CNN..."id="searchBarInput">
<a id="searchBarBtn" href="#"><img id="footerSearchImg"src="searchFooter.avif" alt="Search"></a>
</div>
<div id="first">
<div id="firstD">
<ul id="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>World</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Africa</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Amricas</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Asia</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Australia</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">China</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Europe</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">India</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Middle East</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">United Kingdom</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Politics</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">SCOTUS</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Congress</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Facts First</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">2024 Elections</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Buisness</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Tech</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Media</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Calculator</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Videos</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Markets</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Pre Markets</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Aftter Hours</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Fear & Greed</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Investing</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Markets Now</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Before the Bell</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Nightcap</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Opinions</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Political Op-Eds</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Social Commentary</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Health</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Life, But better</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Fitness</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Food</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Sleep</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Mindfullness</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Relations</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Entertainment</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Movies</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Television</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Celebrity</a></li>
</ul>
</div>
</div>
<div id="first">
<div id="firstD">
<ul id="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>World</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Africa</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Amricas</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Asia</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Australia</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">China</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Europe</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">India</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Middle East</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">United Kingdom</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Politics</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">SCOTUS</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Congress</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Facts First</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">2024 Elections</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Buisness</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Tech</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Media</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Calculator</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Videos</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Markets</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Pre Markets</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Aftter Hours</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Fear & Greed</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Investing</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Markets Now</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Before the Bell</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Nightcap</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Opinions</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Political Op-Eds</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Social Commentary</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Health</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Life, But better</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Fitness</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Food</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Sleep</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Mindfullness</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Relations</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Entertainment</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Movies</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Television</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Celebrity</a></li>
</ul>
</div>
</div>
<div id="first">
<div id="firstD">
<ul id="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>World</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Africa</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Amricas</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Asia</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Australia</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">China</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Europe</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">India</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Middle East</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">United Kingdom</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Politics</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">SCOTUS</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Congress</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Facts First</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">2024 Elections</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Buisness</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Tech</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Media</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Calculator</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Videos</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Markets</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Pre Markets</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Aftter Hours</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Fear & Greed</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Investing</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Markets Now</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Before the Bell</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Nightcap</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Opinions</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Political Op-Eds</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Social Commentary</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Health</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Life, But better</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Fitness</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Food</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Sleep</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Mindfullness</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Relations</a></li>
</ul>
</div>
<div id="firstD">
<ul id ="firstDataUl">
<li id="fisrtData"><a class="navbar-brand" href="#"><h5>Entertainment</h4></a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Movies</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Television</a></li>
<li id="fisrtData"><a class="navbar-brand" href="#">Celebrity</a></li>
</ul>
</div>
</div>
<hr class="horizontalBarrier">
<div id="fourth">
<a href="#"><img id = "logoFooter" src="logo.png" alt="logo"></a>
<a id="fourthData"class="navbar-brand"href="#">Watch</a>
<a id="fourthData"class="navbar-brand"href="#">Listen</a>
<a id="fourthData"class="navbar-brand"href="#">Live TV</a>
<span id="fourthData">|</span>
<span id="fourthData">Follow CNN</span>
<a id="fourthData"class="icons"href="#"><ion-icon name="logo-facebook"></ion-icon></a>
<a id="fourthData"class="icons"href="#"><ion-icon name="logo-twitter"></ion-icon></a>
<a id="fourthData"class="icons"href="#"><ion-icon name="logo-instagram"></ion-ion></a>
<a id="fourthData"class="icons"href="#"><ion-icon name="logo-tiktok"></ion-icon></a>
<a id="fourthData"class="icons"href="#"><ion-icon name="logo-linkedIn"></ion-icon></a>
<a href="logIn.html"><button id = "signIn" type="button" class="btn btn-dark" onclick="">Sign In</button></a>
</div>
<hr class="horizontalBarrier">
<div id="fifth">
<div id="OptFooter">
<a href="#" class="navbar-brand"id = "fifthData">Terms of Use</a>
<a href="#" class="navbar-brand"id = "fifthData">Privacy Policy</a>
<a href="#" class="navbar-brand"id = "fifthData">Cookie Settings</a>
<a href="#" class="navbar-brand"id = "fifthData">Ad Choices</a>
<a href="#" class="navbar-brand"id = "fifthData">Accessibility & CC</a>
<a href="#" class="navbar-brand"id = "fifthData">About</a>
<a href="#" class="navbar-brand"id = "fifthData">Newsletters</a>
<a href="#" class="navbar-brand"id = "fifthData">Transcripts</a>
</div>
<hr>
<p id = "fifthDataInfo">© 2024 Cable News Network. A Warner Bros. Discovery Company. All Rights Reserved.<br>
CNN Sans ™ & © 2016 Cable News Network.</p>
</div>
</div>
</body>
<script src = "cnn.js"></script>
<script src = " https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</html>