generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1180 lines (1157 loc) · 56.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<script src="https://kit.fontawesome.com/7bfe4ec72d.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="assets/styles/main.css">
<title>Newsweek clone page</title>
</head>
<body class="bg-light">
<header class="container-fluid background-color text-light max-width min-width-container sticky-top nav-static p-0">
<nav class="navbar justify-content-between flex-nowrap align-items-center p-lg-1 py-1 px-3 my-auto">
<div class="d-none d-lg-block ml-3 line-height">
<p class="mb-1"><i class="fas fa-cloud-sun text-white"></i> <b>20℃ New York City, USA <i class="fas fa-chevron-right"></i></b></p>
<p class="mb-1">Fri, Oct 09, 2020</p>
</div>
<a class="navbar-brand w-lg-25" href="#">
<img src="assets/images/Newsweek_Logo.svg.png" alt="Newsweek Logo" class="mt-n1 header-logo">
</a>
<div class="d-flex align-items-center">
<i class="fas fa-user d-md-none text-white"></i>
<div class="mb-lg-n4">
<span class="d-none d-md-inline font-weight-bold ">
<a href="#" class="text-white ">LOGIN</a>
</span>
<button type="button" class="btn btn-warning font-weight-bold text-center mx-1 py-1">
<b>SUBSCRIBE <i class="fas fa-chevron-right text-dark"></i></b>
</button>
<a href="#">
<i class="fas fa-bars d-lg-none mr-2 text-white"></i>
</a>
</div>
</div>
</nav>
<nav class="d-none
d-lg-flex align-items-baseline bg-white
container-fluid pt-1 border-bottom nav-two position-relative
justify-content-between">
<ul class="ul-inline-block d-flex list-unstyled mt-3 text-nowrap">
<li class="d-inline"><a href="#" class="text-dark"><b>U.S</b></a></li>
<li class="d-inline"><a href="#" class="text-dark"><b>World</b></a></li>
<li class="d-inline"><a href="#" class="text-dark"><b>Business</b></a></li>
<li class="d-inline"> <a href="#" class="text-dark"><b>Tech & Science</b></a></li>
<li class="d-inline"><a href="#" class="text-dark"><b>Culture</b></a></li>
<li class="d-inline"><a href="#" class="text-dark"><b>Newsgeek</b></a></li>
<li class="d-inline"><a href="#" class="text-dark"><b>Sports</b></a></li>
<li class="d-inline"><a href="#" class="text-dark"><b>Health</b></a></li>
<li class="d-inline"><a href="#" class="text-dark"><b>The Debate</b></a></li>
<li class="d-inline"><a href="#" class="text-dark"><b>Vantage</b></a></li>
<li class="d-inline"><a href="#" class="text-dark"><b>Wather</b></a></li>
</ul>
<form action="submit" class="d-iflex ml-1 mr-auto text-nowrap">
<input type="text" placeholder="Search" class="w-50 border-0">
<button class="border-0 bg-light text-dark" type="button">
<i class="fas fa-search text-dark"></i>
</button>
</form>
</nav>
<nav class="bg-white d-none d-lg-block border-bottom">
<ul class="max-width-ul d-flex align-items-left justify-content-between list-unstyled p-2 mb-n1 ml-3">
<li><a class="text-dark " href="#"><b>TRENDING</b></a></li>
<li><a class="text-muted " href="#"><b>DONALD TRUMP</b></a></li>
<li><a class="text-muted " href="#"><b>JOE BIDEN</b></a></li>
<li><a class="text-muted" href="#"><b>STIMULUS PACKAGE</b></a></li>
<li><a class="text-muted" href="#"><b>CORONAVIRUS</b></a></li>
<li><a class="text-muted" href="#"><b>2020 ELECTIONS</b></a></li>
</ul>
</nav>
</header>
<main class="min-width-container max-width container-fluid bg-white">
<div class="first-section-grid mx-md-2 mx-lg-4 border-0">
<section class="p-2 border-0 top-story">
<h2 class="text-muted mt-3 h6 ml-2"><b>TOP STORY</b></h2>
<article class="px-2">
<a href="#" class="text-dark">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1500x1000" alt="image">
<div class="font-weight-bold position-absolute mini-text-photo text-center text-danger py-2 px-2">
WORLD
</div>
</div>
<h2 class="h5 mt-2">
<b>
McConnell Says New Stimulus 'Unlikely' in Next 3 Weeks'; Trump Wants $1.8T
</b>
</h2>
</a>
<p class="small">The Senate majority leader's remarks only reaffirm the political reality of trying to forge a bipartisan agreement leading into a major election with a president who continues to offer about-face positions on whether he wants more economic relief before voters cast their ballots.</p>
</article>
</section>
<section class="p-2 border-0 featured-stories">
<h2 class="text-muted mt-3 h6"><b> FEATURED STORIES</b></h2>
<article>
<a href="#" class="text-dark">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1500x1001" alt="image">
<div class="font-weight-bold position-absolute mini-text-photo text-danger py-2 px-2">
OPINION
</div>
</div>
<h5 class=" mt-2"><b>Amy Coney Barrett Rose Garden Event Was a COVID Superspreader, Data Shows</b></h5>
</a>
<p class="small">According to data, that was released on Tableau Public by Peter James Walker, at least 37 cases of the new coronavirus were confirmed within 12 days after Barrett's nomination event on September 26. Newsweek reached out to Walker for comment.</p>
</article>
<article>
<a href="#" class="text-dark">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1500x1002" alt="image">
<div class="font-weight-bold position-absolute mini-text-photo text-danger py-2 px-2">
TECH & SCIENCE
</div>
</div>
<h5 class=" mt-2"><b>Voters Will Consider a Record Number of All-Female Races in 2020 Election</b></h5>
</a>
<p class="small">"When women are at the decision-making table, we get a vastly different picture of what the country needs," Representative Deb Haaland told Newsweek.</p>
</article>
<article>
<a href="#" class="text-dark">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1500x1003" alt="image">
<div class="font-weight-bold position-absolute mini-text-photo text-danger py-2 px-2">
U.S.
</div>
</div>
<h5 class=" mt-2"><b>Armenia, Azerbaijan Supporters At War Around World, Fighting for Awareness</b></h5>
</a>
<p class="small">""I think I wouldn't be overestimating by saying every Armenian in the world is disturbed by this, is moved by this and is in action having to do with this," singer-songwriter Serj Tankian told Newsweek.</p>
</article>
<article>
<a href="#" class="text-dark">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1500x1004" alt="image">
<div class="font-weight-bold position-absolute mini-text-photo text-danger py-2 px-2">
NEWS
</div>
</div>
<h5 class=" mt-2"><b>Hurricane Delta Set to Hit Area of Louisiana Where 10,000 Homes Destroyed</b></h5>
</a>
<p class="small">"Hurricane Delta is expected to make landfall on Friday evening in almost the exact area devastated by Hurricane Laura in August.</p>
</article>
<article>
<a href="#" class="text-dark">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1500x1005" alt="image">
<div class="font-weight-bold position-absolute mini-text-photo text-danger py-2 px-2">
NEWS
</div>
</div>
<h5 class=" mt-2"><b>U.S. Could Reach Herd Immunity with 47 Percent Infection Rate, Study Finds</b></h5>
</a>
<p class="small">Frequently cited estimates suggest this can only be achieved when 60 percent or more of the population is infected.</p>
</article>
</section>
<section class="debate-container">
<h2 class="text-muted mt-3 h6 pl-3 p-2"><b>DEBATE</b></h2>
<div class="position-relative main-debate-container border-0 px-2 mt-n2">
<a href="#" class="d-flex text-dark pt-3 ">
<img class="min-images" src="assets/images/man.png" alt="man">
<div class="p-3">
<h2 class="h6"><b> The Time Is Now to Recommit to a National Assault Weapon Ban</b></h2>
<span class="text-muted">By <b>Eric Swalwell</b></span>
</div>
</a>
<div class="d-flex justify-content-center d-flex align-items-center logo-container flex-column">
<h5 class="vs-logo
text-light
font-weight-bold
rounded-circle
text-center p-2 bg-dark ">
VS
</h5>
</div>
<a href="#" class="d-flex man-two text-dark pb-3 justify-content-between">
<div class="p-3">
<h2 class="h6">
<b>
So-Called 'Assault Weapon' Ban
Is Unconstitutional Political Grandstanding
</b>
</h2>
<span class="text-muted">By <b>Eric Swalwell</b></span>
</div>
<img class="min-images mr-2" src="assets/images/man-2.png" alt="man">
</a>
</div>
<div class="opinion p-2 border-0">
<h2 class="text-muted mt-3 h6 pt-2"><b>OPINION</b> </h2>
<a href="#" class="d-flex text-dark pt-1 pb-1">
<img class="min-images" src="assets/images/man-3.png" alt="man">
<div class="p-3">
<h2 class="h6"><b>The Abortion Opportunity for Amy Coney Barrett's Confirmation Hearings</b></h2>
<span class="text-muted">By <b>John Yoo and James Phillips</b></span>
</div>
</a>
<a href="#" class="d-flex text-dark pt-1">
<img class="min-images" src="assets/images/man-4.png" alt="man">
<div class="p-3">
<h2 class="h6"><b>Here are the Factors that Will Guide the Election Result</b></h2>
<span class="text-muted">By <b>Mark Davis</b></span>
</div>
</a>
<a href="#" class="d-flex text-dark pt-1">
<img class="min-images" src="assets/images/man-5.png" alt="man">
<div class="p-3">
<h2 class="h6"><b>We are Concerned as Americans, and Appalled as Orthodox Jews</b></h2>
<span class="text-muted">By <b>Abraham Cooper and Yitzchok Adlerstein</b></span>
</div>
</a>
<a href="#" class="d-flex text-dark pt-1">
<img class="min-images" src="assets/images/man-6.png" alt="man">
<div class="p-3">
<h2 class="h6"><b>Americans Say: Don't Ask About Amy Coney Barrett's Faith</b></h2>
<span class="text-muted">By <b>Kelly Shackelford</b></span>
</div>
</a>
<a href="#" class="d-flex text-dark pt-1">
<img class="min-images" src="assets/images/man-7.png" alt="man">
<div class="p-3">
<h2 class="h6"><b>Biden Is Trying to Bribe Voters With Student Loan Forgiveness</b></h2>
<span class="text-muted">By <b>John R. Lott, Jr.</b></span>
</div>
</a>
<a href="#" class="d-flex text-dark pt-1">
<img class="min-images" src="assets/images/man-8.png" alt="man">
<div class="p-3">
<h2 class="h6"><b>Why Another COVID Bailout Is Still Stalled in Washington</b></h2>
<span class="text-muted">By <b>Hank Gilman</b></span>
</div>
</a>
<a href="#" class="d-flex text-dark pt-1">
<img class="min-images" src="assets/images/man-9.png" alt="man">
<div class="p-3">
<h2 class="h6"><b>What to Do About Columbus Day</b></h2>
<span class="text-muted">By <b>Peter Roff</b></span>
</div>
</a>
<a href="#" class="d-flex text-dark pt-1">
<img class="min-images" src="assets/images/man-10.png" alt="man">
<div class="p-3">
<h2 class="h6"><b>The Biden-Harris Radical Scheme to Pack the Supreme Court</b></h2>
<span class="text-muted">By <b>Mike Davis</b></span>
</div>
</a>
</div>
<div class="container px-2 py-4 bg-light border mx-auto mx-lg-5 d-none d-md-block text-center news-signup">
<div class="text-left d-flex m-auto container-fluid align-items-center">
<img src="https://g.newsweek.com/www/images/logo-n1.svg" alt="alt" class="bg-danger n-img">
<h5 class="font-weight-bolder ml-3 mt-2">Start your day with our top 5 articles</h5>
</div>
<form class="row mx-3 mt-2">
<input type="email" placeholder="Email Address" class="col-12">
<button type="button" class="btn-danger border-0 rounded px-4 py-1 mt-2 text-center col-12">
<b>
FREE SIGN UP <i class="fas fa-chevron-right"></i>
</b>
</button>
</form>
</div>
</section>
<section class="border-0 more-stories pt-3">
<h2 class="text-muted mt-3 h6 p-2">
<b>MORE STORIES</b>
</h2>
<article class="py-2 mx-3 border-bottom border-top">
<a href="#" class="text-dark">
<img src="https://source.unsplash.com/80x80" alt="These 4 image" class=" mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
These 4 GOP Governors Refused to
Sign Letter Supporting Amy Coney Barrett
</h6>
</a>
<p class="small">
Just four of the nation's Republican governors have
opted out of adding their name to a letter supporting Amy
Coney Barrett's confirmation to the Supreme Court.
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<a href="#" class="text-dark">
<img src="https://source.unsplash.com/81x81" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
California GOP Accused of Setting Up Fake Official Ballot Drop-Off
BoxesCalifornia GOP
Accused of Setting Up Fake Official Ballot Drop-Off Boxes
</h6>
</a>
<p class="small">
Ballot boxes pertaining to be official
have been set up in several locations across California—and their
legality has been brought into question.
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<a href="#" class="text-dark">
<img src="https://source.unsplash.com/79x79" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
Tom Cotton's Libertarian Challenger Touts
New Poll That 'Flips the Table'
</h6>
</a>
<p class="small">
The Libertarian candidate in Arkansas' Senate race
is hopeful that undecided voters can swing the election in
his favor, but it's a big ask.The Libertarian candidate in
Arkansas' Senate race is hopeful that undecided voters can swing the
election in his favor, but it's a big ask.
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<a href="#" class="text-dark">
<img src="https://source.unsplash.com/82x82" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
Rioters Topple Abraham Lincoln Statue in 'Day of Rage'
Against ColumbusRioters Topple Abraham Lincoln Statue in
'Day of Rage' Against Columbus
</h6>
</a>
<p class="small">
Those involved used chains and pulleys to topple the statues,
spray-painting the base and spattering
the monuments in red paint.
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<img src="https://source.unsplash.com/84x84" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bolder mt-3">
<a href="#" class="text-dark">
What Happened With Merrick Garland?
What McConnell, Trump Said in 2016
</a>
</h6>
<p class="small">
JA look back at what Senate Majority Leader Mitch McConnell,
Trump and others said about Obama's
Supreme Court nominee back in 2016.
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<img src="https://source.unsplash.com/77x77" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
<a href="#" class="text-dark">
If We Don't Win in Pennsylvania,
'We Are So Screwed,' Biden Insider Says
</a>
</h6>
<p class="small">
With less than a month to go until Election Day, both presidential
campaigns are amping up efforts in what appears to be the most
important battleground state. Newsweek takes an inside look at
the strategies of both candidates—and the impact of legal
challenges on the voting process.
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<img src="https://source.unsplash.com/76x76" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
<a href="#" class="text-dark">
Former People of Praise Member Wants to Testify at Amy Barrett Hearing
</a>
</h6>
<p class="small">
Ahead of Barrett's confirmation hearings on Monday, People
of Praise sent a letter to the Senate Judiciary Committee
asking them to allow testimony about the Christian group of which
Barrett is reportedly a member.
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<img src="https://source.unsplash.com/86x86" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
<a href="#" class="text-dark">
Watchdog Groups Say Amy Coney Barrett Hid Controversial Records
</a>
</h6>
<p class="small">
A second anti-abortion ad uncovered Friday evening has
prompted calls for the University of Notre Dame to release
all of Supreme Court nominee
Amy Coney Barrett's records.
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<a href="#" class="text-dark">
<img src="https://source.unsplash.com/75x75" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
Why Gal Gadot's 'Cleopatra' Casting is Dividing the Internet
</h6>
</a>
<p class="small">
The "Wonder Woman" star is reuniting with filmmaker Patty
Jenkins for the biopic which is tentatively titled,
"Cleopatra"—but many are asking if the role should go
to a Black actress.
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<img src="https://source.unsplash.com/74x74" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
<a href="#" class="text-dark">
Trump Admin Urges Congress to 'Immediately' Vote on PPP Bill
</a>
</h6>
<p class="small">
"Now is the time for us to come together,"
wrote Treasury Secretary Steven Mnuchin and White
House Chief of Staff Mark Meadows.
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<img src="https://source.unsplash.com/80x80" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
<a href="#" class="text-dark">
Trump Adviser Thinks Republicans 'Will Go Along With' New Stimulus Deal
</a>
</h6>
<p class="small">
"I don't think it's dead at all," Larry Kudlow, the
president's chief economic adviser,
said Sunday on CNN's "State of the Union."
</p>
</article>
<article class="py-2 mx-3 border-bottom">
<a href="#" class="text-dark">
<img src="https://source.unsplash.com/87x87" alt="These 4 image" class="mt-3 pr-2 float-left">
<h6 class=" font-weight-bold mt-3">
These 4 GOP Governors Refused to
Sign Letter Supporting Amy Coney Barrett
</h6>
</a>
<p class="small">
Just four of the nation's Republican governors have
opted out of adding their name to a letter supporting Amy
Coney Barrett's confirmation to the Supreme Court.
</p>
</article>
</section>
<div class="border-0 my-t-culture">
<section class="p-2">
<h2 class="text-muted mt-3 h6"><b>MY TURN</b></h2>
<div class="d-md-flex px-md-3 justify-content-around">
<article class="pr-md-3 d-md-flex align-items-md-center flex-md-column">
<img class="img-fluid" src="https://source.unsplash.com/1505x1002" alt="image">
<h6 class="small mt-2">
<a href="#" class="text-muted">
<b>
'My Fiancé and I Met Across Balconies in Verona,
Home of Romeo and Juliet'
</b>
</a>
</h6>
</article>
<article class="d-md-flex align-items-md-center flex-md-column">
<img class="img-fluid" src="https://source.unsplash.com/1504x1004" alt="image">
<h6 class=" small mt-2">
<a href="#" class="text-muted">
<b>
'I'm 99, And the Oldest Park Ranger in America'
</b>
</a>
</h6>
</article>
<article class="pl-md-3 d-md-flex align-items-md-center flex-md-column">
<img class="img-fluid" src="https://source.unsplash.com/1510x1010" alt="image">
<h6 class=" small mt-2">
<a href="#" class="text-muted">
<b>
'I Divorced In April. Now I Live Across The
World With A New Love'
</b>
</a>
</h6>
</article>
</div>
</section>
<section class="px-2 pt-md-n5">
<h2 class="mt-3 h6 mt-md-n3">
<a href="" class="text-muted">
<b>Culture & Travel</b>
</a>
</h2>
<div class="d-md-flex px-md-3 justify-content-around pb-3">
<article class="pr-md-3 d-md-flex align-items-md-center flex-md-column">
<img class="img-fluid" src="https://source.unsplash.com/1506x1007" alt="image">
<h6 class=" small mt-2">
<a href="#" class="text-muted">
<b>
Missing Flying? Flights to Nowhere Take
Off As a New Travel Trend
</b>
</a>
</h6>
</article>
<article class="d-md-flex align-items-md-center flex-md-column">
<img class="img-fluid" src="https://source.unsplash.com/1509x1007" alt="image">
<h6 class=" small mt-2">
<a href="#" class="text-muted">
<b>
100 Best Rock Albums of All Time, According to Critics
</b>
</a>
</h6>
</article>
<article class="pl-md-3 d-md-flex align-items-md-center flex-md-column">
<img class="img-fluid" src="https://source.unsplash.com/1507x1015" alt="image">
<h6 class=" small mt-2">
<a href="#" class="text-muted">
<b>
Plot an Escape Around the World With 'Accidentally
Wes Anderson'
</b>
</a>
</h6>
</article>
</div>
</section>
</div>
</div>
<section class="container-fluid p-4 magazine-section border-0 ">
<div class="text-center border-bottom mb-md-3">
<img src="https://g.newsweek.com/www/images/logo-n1.svg" alt="alt" class="bg-danger n-img m-1">
<h2 class="d-inline font-weight-bolder">IN THE MAGAZINE</h2>
</div>
<div class="row">
<div class="magazine-cover col-md-3">
<div class="position-relative">
<img class="img-fluid w-100" src="assets/images/cover.jpg" alt="image">
<div class=" font-weight-bold position-absolute mini-text-photo text-danger py-2 px-2 small">
OCTOBER 16 ISSUE
</div>
</div>
<h6 class="m-2 text-center h5-md"><b><a href="#" class="text-dark">SEE ALL FEATURES ></a></b></h6>
</div>
<div class="col-md-3">
<img class="img-fluid w-100 " src="assets/images/ugly-lady.jpg" alt="lady">
<div class="my-3">
<span class="bg-danger p-2 font-weight-bolder text-white small">COVER</span>
<span class="text-danger h4 font-weight-bolder ml-2 small">U.S.</span>
</div>
<h5>
<a class="text-dark font-weight-bolder" href="#">Biden Should Promise to Pack the Supreme Court to Save It From Partisan War</a>
</h5>
</div>
<div class="col-md-3">
<img class="img-fluid w-100 " src="assets/images/ugly-lady2.jpg" alt="lady">
<div class="my-3">
<span class="bg-danger p-2 font-weight-bolder text-white small">FEATURES</span>
<span class="text-danger h4 font-weight-bolder ml-2 small">POLITICS</span>
</div>
<h5>
<a class="text-dark font-weight-bolder" href="#">If Elected, Who Would Joe Biden Pick for the Supreme Court?</a>
</h5>
</div>
<div class="col-md-3">
<img class="img-fluid w-100 " src="assets/images/ugly-lady3.jpg" alt="lady">
<div class="my-3">
<span class="bg-danger p-2 font-weight-bolder text-white small">FEATURES</span>
<span class="text-danger h4 font-weight-bolder ml-2 small">OPINION</span>
</div>
<h5>
<a class="text-dark font-weight-bolder" href="#">The Conservative Legacy of Ruth Bader Ginsburg </a>
</h5>
</div>
<div class="col-md-3">
<img class="img-fluid w-100 " src="assets/images/ugly-lady4.jpg" alt="lady">
<div class="my-3">
<span class="bg-danger p-2 font-weight-bolder text-white small">PERISCOPE</span>
<span class="text-danger h4 font-weight-bolder ml-2 small">CULTURE</span>
</div>
<h5>
<a class="text-dark font-weight-bolder" href="#">Biden Tries to Close the Deal with Latinos, As Florida Remains A Headache</a>
</h5>
</div>
<div class="col-md-3">
<img class="img-fluid w-100 " src="assets/images/ugly-lady5.jpg" alt="lady">
<div class="my-3">
<span class="bg-danger p-2 font-weight-bolder text-white small">DOWNTIME</span>
<span class="text-danger h4 font-weight-bolder ml-2 small">CULTURE</span>
</div>
<h5>
<a class="text-dark font-weight-bolder" href="#">'Accidentally Wes Anderson' Around the World</a>
</h5>
</div>
<div class="col-md-3">
<img class="img-fluid w-100" src="assets/images/ugly-lady6.jpg" alt="lady">
<div class="my-3">
<span class="bg-danger p-2 font-weight-bolder text-white small">DOWNTIME</span>
<span class="text-danger h4 font-weight-bolder ml-2 small">CULTURE</span>
</div>
<h5>
<a class="text-dark font-weight-bolder" href="#">Choose Electric: Ewan McGregor Rides Into the Future in 'Long Way Up'</a>
</h5>
</div>
<div class="col-md-3">
<div class="position-relative bg-warning">
<img class="img-fluid w-100 h-100" src="assets/images/ugly-lady7.jpg" alt="lady">
<div class=" font-weight-bold position-absolute mini-text-photo text-white py-1 px-1 bg-danger small">
IN FOCUS
</div>
</div>
<h5 class="my-3">
<a class="text-dark font-weight-bolder" href="#">DISSENT</a>
</h5>
</div>
</div>
</section>
<section class="p-4">
<div class="text-center border-bottom mb-3">
<img src="https://g.newsweek.com/www/images/logo-n1.svg" alt="alt" class="bg-danger n-img m-1">
<h2 class="d-inline h6 font-weight-bolder">EDITOR'S PICK</h2>
</div>
<div class="row border-bottom">
<article class="col-md-6 col-lg-3">
<div class="position-relative">
<a href="#">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1509x1003" alt="image">
<div class=" font-weight-bold position-absolute mini-text-photo text-danger py-2 px-4">
U.S
</div>
</div>
</a>
</div>
<h5 class=" mt-2">
<b>
<a href="#" class="text-dark">Donald Trump Outspends Joe Biden on Facebook Ads In These Key States</a>
</b>
</h5>
<p class="small">
According to the social media giant, Trump has spent more in Texas, Iowa,
Ohio and Nebraska. The president is targeting blocs of voters in states that
could tip the election result.
</p>
</article>
<article class="col-md-6 col-lg-3">
<div class="position-relative">
<a href="#">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1512x1010" alt="image">
<div class=" font-weight-bold position-absolute mini-text-photo text-danger py-2 px-4">
POLITICS
</div>
</div>
</a>
</div>
<h5 class=" mt-2">
<b>
<a href="#" class="text-dark">
Trump Supporter Says His Earnings Have Quadrupled As Debt Collector
</a>
</b>
</h5>
<p class="small">
Klepper interviewed supporters at a recent Trump rally and was amused
by one man who was
making money as a debt collector.
</p>
</article>
<article class="col-md-6 col-lg-3">
<div class="position-relative">
<a href="#">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1511x1005" alt="image">
<div class=" font-weight-bold position-absolute mini-text-photo text-danger py-2 px-4">
POLITICS
</div>
</div>
</a>
</div>
<h5 class=" mt-2">
<b>
<a href="#" class="text-dark">
White House Embraces Herd Immunity in Latest Push to End COVID-19 Lockdowns
</a>
</b>
</h5>
<p class="small">
The White House is doubling down on its push to reopen the economy, now openly
embracing a herd immunity strategy
at the urging of some health experts.
</p>
</article>
<article class="col-md-6 col-lg-3">
<a class="position-relative" href="#">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1517x1009" alt="image">
<div class=" font-weight-bold position-absolute mini-text-photo text-danger py-2 px-4">
POLITICS
</div>
</div>
</a>
<h5 class="mt-2">
<b>
<a href="#" class="text-dark">
What Donald Trump Said at First Rally Since COVID Recovery
</a>
</b>
</h5>
<p class="small">
The coronavirus crisis was a focus for the president in Florida, who
defended his actions amid the pandemic.
</p>
</article>
<article class="col-md-6 col-lg-3">
<a class="position-relative" href="#">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1421x1010" alt="image">
<div class=" font-weight-bold position-absolute mini-text-photo text-danger py-2 px-4">
U.S
</div>
</div>
</a>
<h5 class=" mt-2">
<b>
<a href="#" class="text-dark">
Why Google, Facebook and Amazon Could Pay Billions More in Tax
</a>
</b>
</h5>
<p class="small">
New measures could see tech giants paying corporate taxes on profits
where they operate and
they will be unable to shift them to tax havens.
</p>
</article>
<article class="col-md-6 col-lg-3">
<a class="position-relative" href="#">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1425x1013" alt="image">
<div class=" font-weight-bold position-absolute mini-text-photo text-danger py-2 px-4">
WORLD
</div>
</div>
</a>
<h5 class=" mt-2">
<b>
<a href="#" class="text-dark">
Shark Whose Head Was 'Slowly Being Sliced Off' by Plastic Strap Rescued
</a>
</b>
</h5>
<p class="small">
The seven foot porbeagle shark had been entangled in a piece
of plastic when it was younger.
</p>
</article>
<article class="col-md-6 col-lg-3">
<a class="position-relative" href="#">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1512x1003" alt="image">
<div class=" font-weight-bold position-absolute mini-text-photo text-danger py-2 px-4">
POLITICS
</div>
</div>
</a>
<h5 class=" mt-2">
<b>
<a href="#" class="text-dark">
What Is Spaghettification? Black Hole 'Sucking In' Star Seen by Scientists
</a>
</b>
</h5>
<p class="small">
Scientists spotted the star being ripped apart by a black hole millions of
light-years from Earth.
</p>
</article>
<article class="col-md-6 col-lg-3">
<a class="position-relative" href="#">
<div class="position-relative">
<img class="img-fluid" src="https://source.unsplash.com/1422x1013" alt="image">
<div class=" font-weight-bold position-absolute mini-text-photo text-danger py-2 px-4">
TECH & SCIENCE
</div>
</div>
</a>
<h5 class=" mt-2">
<b>
<a class="text-dark">What Donald Trump Said at First Rally Since COVID Recovery</a>
</b>
</h5>
<p class="small">
The coronavirus crisis was a focus for the president in Florida, who defended
his actions amid the pandemic.
</p>
</article>
</div>
</section>
<div class="p-3 container-fluid last-section">
<article class="border-bottom">
<h3>
<a class="text-danger font-weight-bolder h5" href="#">U.S</a>
</h3>
<div class="row">
<div class="col-md-8 row">
<div class="col-12 col-md-6">
<a href="#"><img class="img-fluid" src="https://source.unsplash.com/1000x600" alt="image"></a>
<h6 class="mt-2">
<a class="text-dark font-weight-bolder" href="#">Amy Coney Barrett Memes Flood the Internet After She Holds Up Her Notepad</a>
</h6>
</div>
<div class="col-12 col-md-6">
<a href="#"><img class="img-fluid" src="https://source.unsplash.com/1000x601" alt="image"></a>
<h6 class="mt-2">
<a class="text-dark font-weight-bolder" href="#">Virginia's Voter Registration Site Goes Down on State's Last Day to Sign Up</a>
</h6>
</div>
</div>
<div class="col-md-4 ml-1">
<div class="d-flex border-bottom">
<a href="#"><img src="https://source.unsplash.com/100x100" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Texas Sees Long Lines as Early Voting Begins</a></h6>
</div>
<div class="d-flex py-2 border-bottom">
<a href="#"><img src="https://source.unsplash.com/100x101" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Half of the 20 Metro Areas Worst-Hit by COVID Are All in One State</a></h6>
</div>
<div class="d-flex py-2">
<a href="#"><img src="https://source.unsplash.com/100x102" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Postal Worker Accused of Discarding Ballot Request Removed from Duty</a></h6>
</div>
</div>
</div>
</article>
<article class="border-bottom">
<h3>
<a class="text-danger font-weight-bolder h5" href="#">World</a>
</h3>
<div class="row">
<div class="col-md-8 row">
<div class="col-12 col-md-6">
<a href="#"><img class="img-fluid" src="https://source.unsplash.com/1000x602" alt="image"></a>
<h6 class="mt-2">
<a class="text-dark font-weight-bolder" href="#">Amy Coney Barrett Memes Flood the Internet After She Holds Up Her Notepad</a>
</h6>
</div>
<div class="col-12 col-md-6">
<a href="#"><img class="img-fluid" src="https://source.unsplash.com/1000x603" alt="image"></a>
<h6 class="mt-2">
<a class="text-dark font-weight-bolder" href="#">Virginia's Voter Registration Site Goes Down on State's Last Day to Sign Up</a>
</h6>
</div>
</div>
<div class="col-md-4 m-1">
<div class="d-flex border-bottom">
<a href="#"><img src="https://source.unsplash.com/100x103" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Texas Sees Long Lines as Early Voting Begins</a></h6>
</div>
<div class="d-flex py-2 border-bottom">
<a href="#"><img src="https://source.unsplash.com/100x104" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Half of the 20 Metro Areas Worst-Hit by COVID Are All in One State</a></h6>
</div>
<div class="d-flex py-2">
<a href="#"><img src="https://source.unsplash.com/100x105" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Postal Worker Accused of Discarding Ballot Request Removed from Duty</a></h6>
</div>
</div>
</div>
</article>
<article class="border-bottom">
<h3>
<a class="text-danger font-weight-bolder h5" href="#">Business</a>
</h3>
<div class="row">
<div class="col-md-8 row">
<div class="col-12 col-md-6">
<a href="#"><img class="img-fluid" src="https://source.unsplash.com/1001x602" alt="image"></a>
<h6 class="mt-2">
<a class="text-dark font-weight-bolder" href="#">Amy Coney Barrett Memes Flood the Internet After She Holds Up Her Notepad</a>
</h6>
</div>
<div class="col-12 col-md-6">
<a href="#"><img class="img-fluid" src="https://source.unsplash.com/1002x603" alt="image"></a>
<h6 class="mt-2">
<a class="text-dark font-weight-bolder" href="#">Virginia's Voter Registration Site Goes Down on State's Last Day to Sign Up</a>
</h6>
</div>
</div>
<div class="col-md-4 m-1">
<div class="d-flex border-bottom">
<a href="#"><img src="https://source.unsplash.com/101x103" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Texas Sees Long Lines as Early Voting Begins</a></h6>
</div>
<div class="d-flex py-2 border-bottom">
<a href="#"><img src="https://source.unsplash.com/102x104" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Half of the 20 Metro Areas Worst-Hit by COVID Are All in One State</a></h6>
</div>
<div class="d-flex py-2">
<a href="#"><img src="https://source.unsplash.com/103x105" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Postal Worker Accused of Discarding Ballot Request Removed from Duty</a></h6>
</div>
</div>
</div>
</article>
<article class="border-bottom">
<h3>
<a class="text-danger font-weight-bolder h5" href="#">Tech & Science</a>
</h3>
<div class="row">
<div class="col-md-8 row">
<div class="col-12 col-md-6">
<a href="#"><img class="img-fluid" src="https://source.unsplash.com/1003x602" alt="image"></a>
<h6 class="mt-2">
<a class="text-dark font-weight-bolder" href="#">Amy Coney Barrett Memes Flood the Internet After She Holds Up Her Notepad</a>
</h6>
</div>
<div class="col-12 col-md-6">
<a href="#"><img class="img-fluid" src="https://source.unsplash.com/1004x603" alt="image"></a>
<h6 class="mt-2">
<a class="text-dark font-weight-bolder" href="#">Virginia's Voter Registration Site Goes Down on State's Last Day to Sign Up</a>
</h6>
</div>
</div>
<div class="col-md-4 m-1">
<div class="d-flex border-bottom">
<a href="#"><img src="https://source.unsplash.com/104x103" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Texas Sees Long Lines as Early Voting Begins</a></h6>
</div>
<div class="d-flex py-2 border-bottom">
<a href="#"><img src="https://source.unsplash.com/105x104" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Half of the 20 Metro Areas Worst-Hit by COVID Are All in One State</a></h6>
</div>
<div class="d-flex py-2">
<a href="#"><img src="https://source.unsplash.com/106x105" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Postal Worker Accused of Discarding Ballot Request Removed from Duty</a></h6>
</div>
</div>
</div>
</article>
<article class="border-bottom">
<h3>
<a class="text-danger font-weight-bolder h5" href="#">Culture</a>
</h3>
<div class="row">
<div class="col-md-8 row">
<div class="col-12 col-md-6">
<a href="#"><img class="img-fluid" src="https://source.unsplash.com/1003x604" alt="image"></a>
<h6 class="mt-2">
<a class="text-dark font-weight-bolder" href="#">Amy Coney Barrett Memes Flood the Internet After She Holds Up Her Notepad</a>
</h6>
</div>
<div class="col-12 col-md-6">
<a href="#"><img class="img-fluid" src="https://source.unsplash.com/1004x605" alt="image"></a>
<h6 class="mt-2">
<a class="text-dark font-weight-bolder" href="#">Virginia's Voter Registration Site Goes Down on State's Last Day to Sign Up</a>
</h6>
</div>
</div>
<div class="col-md-4 m-1">
<div class="d-flex border-bottom">
<a href="#"><img src="https://source.unsplash.com/104x106" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Texas Sees Long Lines as Early Voting Begins</a></h6>
</div>
<div class="d-flex py-2 border-bottom">
<a href="#"><img src="https://source.unsplash.com/105x107" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Half of the 20 Metro Areas Worst-Hit by COVID Are All in One State</a></h6>
</div>
<div class="d-flex py-2">
<a href="#"><img src="https://source.unsplash.com/106x108" alt="image"></a>
<h6 class="p-2"><a class="text-dark font-weight-bolder" href="#">Postal Worker Accused of Discarding Ballot Request Removed from Duty</a></h6>
</div>
</div>
</div>
</article>
<article class="border-bottom">
<h3>
<a class="text-danger font-weight-bolder h5" href="#">Sports</a>