generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1818 lines (1689 loc) · 94.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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="styles/style.css">
<title>Newsweek Website Clone</title>
</head>
<body>
<header>
<div class="d-lg-none top__nav container-fluid d-flex justify-content-between align-content-center pt-2">
<div class="header__mobile"><a href="#">
<img class="img-fluids " src="images/Newsweek-logo-white.jpg" alt="Newsweek logo">
</a></div>
<div class="d-flex justify-content-center text-white">
<a href="#"><i class="fas fa-user p-2"></i><span class="header__login text-white p-2">Login</span></a>
<button class="header_btn btn-warning mb-3 px-3 py-1 border-0" type="button" value="Subscribe"
name="subscribe">Subscribe <i class="fas fa-chevron-right"></i></button>
<a href="#"><i class="fas fa-bars p-2"></i></a>
</div>
</div>
<div class="container-fluid d-none d-lg-block">
<div class="top__sub-nav d-lg-flex flex-row justify-content-between ">
<div class="col-3 ml-3 mt-4">
<a class="text-white font-weight-bold " href="#">
<i class="fas fa-cloud-sun-rain"></i>
20° <span>Beirut, LB ></span>
</a>
<p class="text-white font-weight-bold ">Wed, Dec 16, 2020</p>
</div>
<div class="mt-lg-3">
<a href="#">
<img height="50" width="200" src="images/Newsweek-logo-white.jpg" alt="Newsweek logo">
</a>
</div>
<div class="d-lg-flex justify-content-lg-start align-items-center mr-3">
<a href="#"><span class="header__login text-white text-decoration-none p-2">Login</span></a>
<button class="header_btn btn-warning mb-3 mb-lg-0 px-3 py-1 py-lg-2 border-0" type="button"
value="Subscribe" name="subscribe">Subscribe <i class="fas fa-chevron-right"></i></button>
</div>
</div>
<div class="sub__nav border-bottom mb-2">
<nav class="nav d-inline-flex justify-content-between py-2">
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="border-right pr-lg-3">U.S</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="border-right pr-lg-3">World</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="border-right pr-lg-3">Business</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="border-right pr-lg-3">Tech &
Science</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="border-right pr-lg-3">Culture</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="border-right pr-lg-3">Newsgeek</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="border-right pr-lg-3">Sport</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="border-right pr-lg-3">Health</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="border-right pr-lg-3">The Debate</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="border-right pr-lg-3">Vantage</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="pr-lg-3">Weather</span></a>
</nav>
</div>
<div class="sub__nav border-bottom mb-2">
<nav class="nav d-inline-flex justify-content-between py-2">
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="text-secondary pr-lg-3">Trending</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="text-secondary pr-lg-3">Joe Biden</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="text-secondary pr-lg-3">Donald
Trump</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span
class="text-secondary pr-lg-3">Coronavirus</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="text-secondary pr-lg-3">Stimulus
package</span></a>
<a class="px-xl-2 px-lg-0 nav-ph" href="#"><span class="text-secondary pr-lg-3">Vaccine</span></a>
</nav>
</div>
</div>
</header>
<main class="container-fluid">
<div class="row">
<div class="col-12 mx-auto col-md-7 order-md-2 col-lg-6 order-1">
<article class="mt-4 mt-md-2 ">
<div>
<div class="article__header mb-3 mb-md-2"> Top story</div>
<div class="top__story">
<div class="top__story-photo">
<a href="#">
<img src="images/trump-cpac-flag-2020-2024-voter-fraud.jpg"
alt="Trump with flag 2020">
</a>
<a class="text-decoration-none" href="#"><span
class="news__tag px-3 py-1">Politics</span>
</a>
</div>
<div class="top__story-header">
<h3><a href="#">
Solar winds. probably Hacked by Russia, Servers White House, Pentagon, NASA
</a></h3>
<div class="news__summary">
"This is a huge cyber espionage campaign targeting the U.S. government and its
interests,"
said
one source familiar
with the matter.
</div>
</div>
</div>
</div>
</article>
<section class="col-12 d-none d-md-block section__my-turn mt-4 col-md-7">
<div class="container__my-turn">
<div class="section__header mb-3">MY TURN</div>
<div class="d-flex flex-md-row">
<div class="my__turn-details mr-4">
<div class="my__turn-photo">
<a href="#">
<img src="images/merlin_146985669_861e94aa-728c-4783-913b-42745b5dac83-mobileMasterAt3x.jpg?w=397&h=397&f=3666c7acb7f0e65ca61c2edd56c1c340"
alt="Biden with dog">
</a>
</div>
<div class="summary my-3">
<a class="text-secondary" href="#">'Joe Biden Adopted The White House's
First
Rescue Dog From
Us'</a>
</div>
</div>
<div class="my__turn-details mr-4">
<div class="my__turn-photo">
<a href="#">
<img src="images/iraq-iraq-war-jewish-christian.jpg?w=397&h=397&f=3666c7acb7f0e65ca61c2edd56c1c340" alt="...">
</a>
</div>
<div class="summary my-3">
<a class="text-secondary" href="#">I'm Jewish. Here's How a Christian Pastor
Helped Me Through
The Iraq War'</a>
</div>
</div>
<div class="my__turn-details">
<div class="my__turn-photo">
<a href="#">
<img src="https://d.newsweek.com/en/full/1684807/joe-biden-rescue-dogs-major-delaware.jpg?w=397&h=397&f=3666c7acb7f0e65ca61c2edd56c1c340"
alt="Biden with dog">
</a>
</div>
<div class="summary my-3">
<a class="text-secondary" href="#">'Joe Biden Adopted The White House's
First
Rescue Dog From
Us'</a>
</div>
</div>
</div>
</div>
</section>
<section class=" d-none d-md-block section__culture container mt-5 mt-md-3">
<div class="section__culture-header mb-3">
<div class="section__header mb-3"> CULTURE & TRAVEL</div>
<div class="d-flex flex-md-row">
<div class="culture__story">
<div class="top__story-photo">
<a href="#">
<img src="images/diamond-ring-effect.jpg" alt="Solar eclipse">
</a>
<a class="text-decoration-none" href="#"> <span
class="news__tag bg-text-muted">Total
solar Eclipse</span></a>
</div>
<div class="summary mb-3">
<a class="text-secondary" href="#">Two Minutes of Magic: Total Solar Eclipse
2020,
in Photos</a>
</div>
</div>
<div class="culture__story">
<div class="top__story-photo">
<a href="#">
<img src="images/diamond-ring-effect.jpg" alt="Solar eclipse">
</a>
<a class="text-decoration-none" href="#"> <span
class="news__tag bg-text-muted">Total
solar Eclipse</span></a>
</div>
<div class="summary mb-3 ">
<a class="text-secondary " href="#">Two Minutes of Magic: Total Solar
Eclipse 2020,
in
Photos</a>
</div>
</div>
<div class="culture__story">
<div class="top__story-photo">
<a href="#">
<img src="images/diamond-ring-effect.jpg" alt="Solar eclipse">
</a>
<a class="text-decoration-none" href="#"> <span
class="news__tag bg-text-muted">Total
solar Eclipse</span></a>
</div>
<div class="summary mb-3 ">
<a class="text-secondary " href="#">Two Minutes of Magic: Total Solar
Eclipse 2020,
in
Photos</a>
</div>
</div>
</div>
</div>
</section>
<section class="d-none d-md-block section__more-stories container">
<div class="section__header my-3 pb-3 border-bottom">
More Stories
</div>
<div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#">
<img src="https://d.newsweek.com/en/full/1685632/first-lady-elect-jill-biden.jpg"
alt=" First lady-elect Jill Biden"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Jill Biden Fires Back After WSJ Op-Ed Tells Her 'Drop the Doc'</a>
</h3>
<h5>
The first lady-elect called for women's achievements to be celebrated, not
diminished.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src="https://d.newsweek.com/en/full/1685576/cleveland-indians-logo.jpg"
alt="Cleveland Indians logo"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Trump Decries Cleveland Indians Name Change as 'Cancel Culture at Work!'</a>
</h3>
<h5>
The MLB franchise is in the process of replacing its logo for
the first time in 105 years and dropping references to Native Americans.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#">
<img src=" https://d.newsweek.com/en/full/1685669/gop-rep-liz-cheney.jpg"
alt="GOP Rep. Liz Cheney">
</a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Liz Cheney Says Trump Snowden Pardon Would Be 'Unconscionable'</a>
</h3>
<h5>
The Republican congresswoman also called the NSA whistleblower a
"traitor" to the U.S for releasing classified information.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src="
https://d.newsweek.com/en/full/1685632/first-lady-elect-jill-biden.jpg" alt=" First
lady-elect Jill Biden"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Jill Biden Fires Back After WSJ Op-Ed Tells Her 'Drop the Doc'</a>
</h3>
<h5>
The first lady-elect called for women's achievements to be celebrated, not
diminished.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img
src=" https://d.newsweek.com/en/full/1685576/cleveland-indians-logo.jpg"
alt="Cleveland Indians logo"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Trump Decries Cleveland Indians Name Change as 'Cancel Culture at Work!'</a>
</h3>
<h5>
The MLB franchise is in the process of replacing its logo for
the first time in 105 years and dropping references to Native Americans.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685669/gop-rep-liz-cheney.jpg"
alt="GOP Rep. Liz Cheney"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Liz Cheney Says Trump Snowden Pardon Would Be 'Unconscionable'</a>
</h3>
<h5>
The Republican congresswoman also called the NSA whistleblower a
"traitor" to the U.S for releasing classified information.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src="
https://d.newsweek.com/en/full/1685632/first-lady-elect-jill-biden.jpg" alt=" First
lady-elect Jill Biden"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Jill Biden Fires Back After WSJ Op-Ed Tells Her 'Drop the Doc'</a>
</h3>
<h5>
The first lady-elect called for women's achievements to be celebrated, not
diminished.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img
src=" https://d.newsweek.com/en/full/1685576/cleveland-indians-logo.jpg"
alt="Cleveland Indians logo"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Trump Decries Cleveland Indians Name Change as 'Cancel Culture at Work!'</a>
</h3>
<h5>
The MLB franchise is in the process of replacing its logo for
the first time in 105 years and dropping references to Native Americans.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685669/gop-rep-liz-cheney.jpg"
alt="GOP Rep. Liz Cheney"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Liz Cheney Says Trump Snowden Pardon Would Be 'Unconscionable'</a>
</h3>
<h5>
The Republican congresswoman also called the NSA whistleblower a
"traitor" to the U.S for releasing classified information.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src="
https://d.newsweek.com/en/full/1685632/first-lady-elect-jill-biden.jpg" alt=" First
lady-elect Jill Biden"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Jill Biden Fires Back After WSJ Op-Ed Tells Her 'Drop the Doc'</a>
</h3>
<h5>
The first lady-elect called for women's achievements to be celebrated, not
diminished.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img
src=" https://d.newsweek.com/en/full/1685576/cleveland-indians-logo.jpg"
alt="Cleveland Indians logo"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Trump Decries Cleveland Indians Name Change as 'Cancel Culture at Work!'</a>
</h3>
<h5>
The MLB franchise is in the process of replacing its logo for
the first time in 105 years and dropping references to Native Americans.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685669/gop-rep-liz-cheney.jpg"
alt="GOP Rep. Liz Cheney"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Liz Cheney Says Trump Snowden Pardon Would Be 'Unconscionable'</a>
</h3>
<h5>
The Republican congresswoman also called the NSA whistleblower a
"traitor" to the U.S for releasing classified information.
</h5>
</div>
</div>
</div>
</section>
</div>
<div class="order-2 col-md-5 order-md-1 col-lg-3 order-lg-1">
<section class="mt-5 border-bottom mt-md-2">
<div class="section__header mb-3 mb-md-2">Feature Story</div>
<div class="feature__story">
<div class="top__story">
<div class="top__story-photo">
<a href="#"> <img src="images/quantum.jpg" alt="Quantum picture"></a>
<a class="text-decoration-none" href="#"> <span class="news__tag px-3 py-1">Science
&Technology</span></a>
</div>
</div>
<div class=" top__story-header">
<h3><a href="#">
As China Leads Quantum Race, US Spes plan for a World with Fewer Secrets
</a></h3>
<div class="news__summary mb-3 ">
Will we wake up one day and find that China has been reading our mail? Losing our
technological
edge could have major security implications for the U.S.
</div>
</div>
</div>
<div class="feature__story">
<div class="top__story">
<div class="top__story-photo">
<a href="#"><img src="images/dissident-journalist-ruhollah-zam-executed-iran.jpg"
alt="Ruhollah Zam"></a>
<a class="text-decoration-none" href="#"><span
class="news__tag px-3 py-1">World</span></a>
</div>
</div>
<div class=" top__story-header">
<h3><a href="#">
Biden Aides Condemn 'Horrifying' Iran Execution Despite Nuclear Deal Hopes
</a></h3>
<div class="news__summary mb-3 ">
Iran hanged journalist Ruhollah Zam on Saturday,
accusing him of directing mass anti-government protests in 2017.
</div>
</div>
</div>
<div class="feature__story">
<div class="top__story">
<div class="top__story-photo">
<a href="#"> <img src="images/cleveland-indians-logo.jpg" alt="Quantum picture"></a>
<a class="text-decoration-none" href="#"> <span
class="news__tag px-3 py-1">Sports</span></a>
</div>
</div>
<div class=" top__story-header">
<h3><a href="#">
Trump Decries Cleveland Indians Name Change as 'Cancel Culture at Work!'
</a></h3>
<div class="news__summary mb-3 ">
The MLB franchise is in the process of replacing its logo
for the first time in 105 years and dropping references to Native Americans.
</div>
</div>
</div>
<div class="feature__story">
<div class="top__story">
<div class="top__story-photo">
<a href="#"> <img src="images/joe-biden-speaks-wilmington-delaware.jpg"
alt="Joe Biden speaks in Wilmington"></a>
<a class="text-decoration-none" href="#"><span
class="news__tag px-3 py-1">Politics</span></a>
</div>
</div>
<div class=" top__story-header">
<h3><a href="#">
Joe Biden's Complicated Attorney General Search Just Got More Complicated.
</a></h3>
<div class="news__summary mb-3 ">
With Hunter Biden under federal investigation, Biden's pick to lead the DOJ faces the
thorny
task of
shielding the department from any appearance of political bias.
</div>
</div>
</div>
<div class="feature__story">
<div class="top__story">
<div class="top__story-photo">
<a href="#"><img src="images/president-trump-holds-rally-georgia.jpg"
alt="President trump holds rally in Georgia"></a>
<a class="text-decoration-none" href="#"><span
class="news__tag px-3 py-1">News</span></a>
</div>
</div>
<div class=" top__story-header">
<h3><a href="#">
Kelly Loeffler Slammed for Posing With Former KKK Leader
</a></h3>
<div class="news__summary mb-3 ">
"This should be a problem for the Kelly Loeffler campaign, but it's hard to say right
now,"
wrote political and sports commentator Keith Olbermann.
</div>
</div>
</div>
</section>
</div>
<div class="col-lg-3 order-lg-3 order-3">
<section class=" col-12 col-md-12 section__debate border-bottom-0 pb-5 pb-lg-2 ">
<div class="debate__header">
<div class="header__title mt-5 mt-lg-2 pb-3">
The Debate
</div>
</div>
<div class="d-flex flex-sm-row justify-content-start align-items-center mt-4">
<a href="#"><img
src="https://d.newsweek.com/en/full/1681620/rr-reno.png?w=63&h=63&f=1d30cc9b12c1ab70a547a48d6b21fcb5"
alt="R.R Reno"></a>
<div class="debate__details ml-3">
<a class="text-decoration-none text-dark" href="#">
Nationalism and Populism Are the GOP's Future
</a>
<h5 class="text-secondary text-uppercase"> By <strong>r.r Reno</strong></h5>
</div>
</div>
<div class="lines my-lg-3">
<div class="vs">
<div class="vs-child"> vs</div>
</div>
</div>
<div class="vs__bottom d-flex flex-sm-row justify-content-between align-items-center mt-4">
<div class="debate__details ml-3">
<a class="text-decoration-none text-dark" href="#">
A defense of zombie conservatism
</a>
<h5 class="text-secondary text-uppercase">By <strong>Charles C.W COOKE</strong> </h5>
</div>
<div class="mb-3">
<a href="#"><img class="w-100" src="images/charles-cw-cooke.png" alt="Charles Cooke"></a>
</div>
</div>
</section>
<section class="col-12 col-md-12 section__opinion border-bottom pb-5">
<div class="Debate__header">
<div class="header__title mt-5 pb-3">
OPINION
</div>
</div>
<div
class="d-flex flex-sm-row justify-content-between justify-content-md-start align-items-center mt-4 border-bottom pb-3">
<a href="#"><img class="w-100" src="images/barden-new.png" alt="R.R Reno"></a>
<div class="debate__details ml-3">
<a class="text-decoration-none text-dark" href="#">
My Son Died in Sandy Hook Eight Years Ago. Gun Reform Still Lingers
</a>
<h5 class="text-secondary text-uppercase"> By MARK BARDEN</h5>
</div>
</div>
<div
class="d-flex flex-sm-row justify-content-between justify-content-md-start align-items-center mt-4 border-bottom pb-3">
<a href="#"><img class="w-100" src="images/barden-new.png" alt="R.R Reno"></a>
<div class="debate__details ml-3">
<a class="text-decoration-none text-dark" href="#">
My Son Died in Sandy Hook Eight Years Ago. Gun Reform Still Lingers
</a>
<h5 class="text-secondary text-uppercase"> By MARK BARDEN</h5>
</div>
</div>
<div
class="d-flex flex-sm-row justify-content-between justify-content-md-start align-items-center mt-4 border-bottom pb-3">
<a href="#"><img class="w-100" src="images/barden-new.png" alt="R.R Reno"></a>
<div class="debate__details ml-3">
<a class="text-decoration-none text-dark" href="#">
My Son Died in Sandy Hook Eight Years Ago. Gun Reform Still Lingers
</a>
<h5 class="text-secondary text-uppercase"> By MARK BARDEN</h5>
</div>
</div>
<div
class="d-flex flex-sm-row justify-content-between justify-content-md-start align-items-center mt-4 border-bottom pb-3">
<a href="#"><img class="w-100" src="images/barden-new.png" alt="R.R Reno"></a>
<div class="debate__details ml-3">
<a class="text-decoration-none text-dark" href="#">
My Son Died in Sandy Hook Eight Years Ago. Gun Reform Still Lingers
</a>
<h5 class="text-secondary text-uppercase"> By MARK BARDEN</h5>
</div>
</div>
<div
class="d-flex flex-sm-row justify-content-between justify-content-md-start align-items-center mt-4 border-bottom pb-3">
<a href="#"><img class="w-100" src="images/barden-new.png" alt="R.R Reno"></a>
<div class="debate__details ml-3">
<a class="text-decoration-none text-dark" href="#">
My Son Died in Sandy Hook Eight Years Ago. Gun Reform Still Lingers
</a>
<h5 class="text-secondary text-uppercase"> By MARK BARDEN</h5>
</div>
</div>
<div
class="d-flex flex-sm-row justify-content-between justify-content-md-start align-items-center mt-4 border-bottom pb-3">
<a href="#"><img class="w-100" src="images/barden-new.png" alt="R.R Reno"></a>
<div class="debate__details ml-3">
<a class="text-decoration-none text-dark" href="#">
My Son Died in Sandy Hook Eight Years Ago. Gun Reform Still Lingers
</a>
<h5 class="text-secondary text-uppercase"> By MARK BARDEN</h5>
</div>
</div>
<div
class="d-flex flex-sm-row justify-content-between justify-content-md-start align-items-center mt-4 pb-3">
<a href="#"><img class="w-100" src="images/barden-new.png" alt="R.R Reno"></a>
<div class="debate__details ml-3">
<a class="text-decoration-none text-dark" href="#">
My Son Died in Sandy Hook Eight Years Ago. Gun Reform Still Lingers
</a>
<h5 class="text-secondary text-uppercase"> By MARK BARDEN</h5>
</div>
</div>
</section>
<section class="jumbotron border sign__up mt-md-4 p-2 d-md-none d-lg-block">
<div class="d-flex flex-row justify-content-between align-items-center mb-2">
<span class="icon m-2">N</span>
Start your day with our five articles.
</div>
<form class="d-flex flex-column" action="#">
<input class="text-secondary border-0 mb-2 p-2" type="email" name="email"
placeholder="Email Address">
<input type="button" class="btn btn-danger" value="Free sign up >">
</form>
</section>
</div>
</div>
<section class="d-md-none section__more-stories container">
<div class="section__header my-3 pb-3 border-bottom">
More Stories
</div>
<div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685632/first-lady-elect-jill-biden.jpg"
alt=" First
lady-elect Jill Biden"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Jill Biden Fires Back After WSJ Op-Ed Tells Her 'Drop the Doc'</a>
</h3>
<h5>
The first lady-elect called for women's achievements to be celebrated, not diminished.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685576/cleveland-indians-logo.jpg"
alt="Cleveland Indians logo"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Trump Decries Cleveland Indians Name Change as 'Cancel Culture at Work!'</a>
</h3>
<h5>
The MLB franchise is in the process of replacing its logo for
the first time in 105 years and dropping references to Native Americans.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685669/gop-rep-liz-cheney.jpg"
alt="GOP Rep. Liz Cheney"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Liz Cheney Says Trump Snowden Pardon Would Be 'Unconscionable'</a>
</h3>
<h5>
The Republican congresswoman also called the NSA whistleblower a
"traitor" to the U.S for releasing classified information.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685632/first-lady-elect-jill-biden.jpg"
alt=" First
lady-elect Jill Biden"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Jill Biden Fires Back After WSJ Op-Ed Tells Her 'Drop the Doc'</a>
</h3>
<h5>
The first lady-elect called for women's achievements to be celebrated, not diminished.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685576/cleveland-indians-logo.jpg"
alt="Cleveland Indians logo"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Trump Decries Cleveland Indians Name Change as 'Cancel Culture at Work!'</a>
</h3>
<h5>
The MLB franchise is in the process of replacing its logo for
the first time in 105 years and dropping references to Native Americans.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685669/gop-rep-liz-cheney.jpg"
alt="GOP Rep. Liz Cheney"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Liz Cheney Says Trump Snowden Pardon Would Be 'Unconscionable'</a>
</h3>
<h5>
The Republican congresswoman also called the NSA whistleblower a
"traitor" to the U.S for releasing classified information.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685632/first-lady-elect-jill-biden.jpg"
alt=" First
lady-elect Jill Biden"></a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Jill Biden Fires Back After WSJ Op-Ed Tells Her 'Drop the Doc'</a>
</h3>
<h5>
The first lady-elect called for women's achievements to be celebrated, not diminished.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#">
<img src=" https://d.newsweek.com/en/full/1685576/cleveland-indians-logo.jpg"
alt="Cleveland Indians logo">
</a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Trump Decries Cleveland Indians Name Change as 'Cancel Culture at Work!'</a>
</h3>
<h5>
The MLB franchise is in the process of replacing its logo for
the first time in 105 years and dropping references to Native Americans.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#">
<img src=" https://d.newsweek.com/en/full/1685669/gop-rep-liz-cheney.jpg"
alt="GOP Rep. Liz Cheney">
</a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Liz Cheney Says Trump Snowden Pardon Would Be 'Unconscionable'</a>
</h3>
<h5>
The Republican congresswoman also called the NSA whistleblower a
"traitor" to the U.S for releasing classified information.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#">
<img src=" https://d.newsweek.com/en/full/1685632/first-lady-elect-jill-biden.jpg" alt=" First
lady-elect Jill Biden">
</a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Jill Biden Fires Back After WSJ Op-Ed Tells Her 'Drop the Doc'</a>
</h3>
<h5>
The first lady-elect called for women's achievements to be celebrated, not diminished.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#"><img src=" https://d.newsweek.com/en/full/1685576/cleveland-indians-logo.jpg"
alt="Cleveland Indians logo">
</a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Trump Decries Cleveland Indians Name Change as 'Cancel Culture at Work!'</a>
</h3>
<h5>
The MLB franchise is in the process of replacing its logo for
the first time in 105 years and dropping references to Native Americans.
</h5>
</div>
</div>
<div class="d-flex align-content-center mt-2 border-bottom pb-3">
<div>
<a href="#">
<img src=" https://d.newsweek.com/en/full/1685669/gop-rep-liz-cheney.jpg"
alt="GOP Rep. Liz Cheney">
</a>
</div>
<div class="pl-3">
<h3><a class="text-decoration-none text-dark" href="#">
Liz Cheney Says Trump Snowden Pardon Would Be 'Unconscionable'</a>
</h3>
<h5>
The Republican congresswoman also called the NSA whistleblower a
"traitor" to the U.S for releasing classified information.
</h5>
</div>
</div>
</div>
</section>
<section class="col-12 d-md-none section__my-turn container mt-4 col-md-7">
<div class="container__my-turn">
<div class="section__header mb-3"> MY TURN</div>
<div class="my__turn-details">
<div class="my__turn-photo">
<a href="#">
<img src="images/merlin_146985669_861e94aa-728c-4783-913b-42745b5dac83-mobileMasterAt3x.jpg?w=397&h=397&f=d9266fc66bb3f6fc45ac38f942820e4f"
alt="Biden with dog">
</a>
</div>
<div class="summary my-3">
<a class="text-secondary" href="#">'Joe Biden Adopted The White House's First Rescue Dog
From
Us'</a>
</div>
</div>
<div class="my__turn-details">
<div class="my__turn-photo">
<a href="#">
<img src="images/iraq-iraq-war-jewish-christian.jpg?w=397&h=397&f=d9266fc66bb3f6fc45ac38f942820e4f"
alt="...">
</a>
</div>
<div class="summary my-3">
<a class="text-secondary" href="#">I'm Jewish. Here's How a Christian Pastor Helped Me
Through
The Iraq War'</a>
</div>
</div>
<div class="my__turn-details">
<div class="my__turn-photo">
<a href="#">
<img src="images/merlin_146985669_861e94aa-728c-4783-913b-42745b5dac83-mobileMasterAt3x.jpg?w=397&h=397&f=d9266fc66bb3f6fc45ac38f942820e4f"
alt="Biden with dog">
</a>
</div>
<div class="summary my-3">
<a class="text-secondary" href="#">'Joe Biden Adopted The White House's First Rescue Dog
From
Us'</a>
</div>
</div>
</div>
</section>
<section class="d-md-none section__culture container mt-5">
<div class="section__culture-header mb-3">
<div class="section__header mb-3"> CULTURE & TRAVEL</div>
<div class="culture__story">
<div class="top__story-photo">
<a href="#">
<img src="images/diamond-ring-effect.jpg" alt="Solar eclipse">
</a>
<a class="text-decoration-none" href="#">
<div class="news__tag px-3 py-1 bg-text-muted">Total solar Eclipse</div>
</a>
</div>
<div class="summary mb-3">
<a class="text-secondary" href="#">Two Minutes of Magic: Total Solar Eclipse 2020, in
Photos</a>
</div>
</div>
<div class="culture__story">
<div class="top__story-photo">
<a href="#">
<img src="images/diamond-ring-effect.jpg" alt="Solar eclipse">
</a>
<a class="text-decoration-none" href="#">
<div class="news__tag px-3 py-1 bg-text-muted">Total solar Eclipse</div>
</a>
</div>
<div class="summary mb-3 ">
<a class="text-secondary " href="#">Two Minutes of Magic: Total Solar Eclipse 2020, in
Photos</a>
</div>
</div>
<div class="culture__story">
<div class="top__story-photo">
<a href="#">
<img src="images/diamond-ring-effect.jpg" alt="Solar eclipse">
</a>
<a class="text-decoration-none" href="#">
<div class="news__tag px-3 py-1 bg-text-muted">Total solar Eclipse</div>
</a>
</div>
<div class="summary mb-3 ">
<a class="text-secondary " href="#">Two Minutes of Magic: Total Solar Eclipse 2020, in
Photos</a>
</div>
</div>
</div>
</section>
<section class="jumbotron border sign__up mt-md-4 p-2 d-lg-none">
<div class="d-flex flex-row justify-content-between align-items-center mb-2">
<span class="icon m-2">N</span>
Start your day with our five articles.
</div>
<form class="d-flex flex-column" action="#">
<input class="text-secondary border-0 mb-2 p-2" type="email" name="email" placeholder="Email Address">
<input type="button" class="btn btn-danger" value="Free sign up >">
</form>
</section>
<article class="mx-auto article__magazine">
<div class=" d-flex flex-row justify-content-center align-items-center magazine__header mt-4">
<span class="icon m-2">N</span>
in the magazine
</div>
<div class="row row-cols-1 row-cols-md-4 align-items-md-start">
<div class="col section__features">