-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1713 lines (1401 loc) · 89.9 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, shrink-to-fit=no">
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/media.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/ea4197418c.js" crossorigin="anonymous"></script>
<title>Newsweek</title>
</head>
<body class="container-fluid p-0 ">
<header>
</header>
<main>
<div class="header sticky-top">
<nav class=" d-flex flex-row">
<div class="date d-none d-lg-block d-lg-flex flex-lg-column justify-content-between text-white">
<a href="#">
<picture>
<img class="weather" src="https://g.newsweek.com/img/weather/30.png" alt="">
</picture>
28°
<span class="pl-1">
Cali, CO
</span>
<picture>
<img src="https://g.newsweek.com/img/weather/ic-white-arrow.png" alt="">
</picture>
</a>
<span class="d-block">Sun, Jun 14, 2020</span>
</div>
<a href="#" class="brand">
<svg class="align-top" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 395.6 60"
xml:space="preserve">
<g>
<path class="st0"
d="M58.7,10.8h-5.6v48.3H42.8l-25.1-33v22.1h5.6v10.8H0V48.3h5.6V10.8H0V0h17.6L41,30.7V10.8h-5.6V0h23.2 L58.7,10.8L58.7,10.8z M95.8,38c0,0.9,0,1.8-0.1,2.7H70.3c-0.7,8.2,2.4,10.6,7.1,10.6c3.9,0,6.9-2.6,6.9-6.6h11 c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1c0-10.5,7-21.6,21-21.6C89.9,16.3,95.8,25.6,95.8,38 M159,27.3h-3.7 l-9.4,31.8h-12.5l-5.9-17.4l-5.3,17.4h-12.8L98.8,27.4h-3.7V16.6h22.1v10.7h-5.6l5.8,16.9l7.6-27.6h6.8l9.3,27.6l5-16.9h-5.6V16.6 H159L159,27.3L159,27.3z M174.5,27.8c0,1.5,1.2,2.5,5.4,3.9l6,2c5.5,1.8,12.1,5.9,12.1,13.4c0,8.8-6.6,13-14.7,13 c-6.5,0-11.5-3.2-12.9-4.6V59h-10.8V44.4h10.6c0.3,4.8,4.6,7.3,8.5,7.3c3.2,0,4.7-1.4,4.7-3c0-2-1.2-3.1-6.5-4.8l-5.3-1.8 c-5.4-1.7-11.4-5.7-11.4-12.8c0-8.7,7.7-13.1,14.3-13.1c6.8,0,10.1,1.9,11.8,3.8l0.1-3.3H197v13.3h-11.2c-0.2-3.6-3.7-5.2-7.2-5.2 C175.8,24.8,174.5,26.1,174.5,27.8 M262.8,27.3h-3.7l-9.4,31.8h-12.5l-5.9-17.4L226,59.1h-12.8l-10.6-31.7h-3.7V16.6h22.1v10.7 h-5.6l5.8,16.9l7.6-27.6h6.8l9.3,27.7l5-16.9h-5.6V16.6h18.5V27.3z M302,37.9c0,0.9,0,1.8-0.1,2.7h-25.4 c-0.7,8.2,2.4,10.6,7.1,10.6c3.9,0,6.9-2.6,6.9-6.6h11c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1 c0-10.5,7-21.6,21-21.6C296.1,16.2,302,25.5,302,37.9 M343.9,37.8c0,0.9,0,1.8-0.1,2.7h-25.4c-0.7,8.2,2.4,10.6,7.1,10.6 c3.9,0,6.9-2.6,6.9-6.6h11c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1c0-10.5,7-21.6,21-21.6 C338,16.1,343.9,25.4,343.9,37.8 M389.9,59h-12.8l-13.3-17.3l-4.3,3.2v3.4h3.8V59h-19.6V48.3h3.7V10.6h-5.6V0h17.8v33.9l8.9-6.5 h-5.6V16.6h23.9v10.8h-3.7l-9.3,7l10.7,13.9h5.6L389.9,59L389.9,59z M395.6,56.6c0,0.5-0.1,0.9-0.4,1.2c-0.2,0.4-0.5,0.7-0.9,0.9 c-0.4,0.2-0.8,0.4-1.3,0.4c-0.5,0-0.9-0.1-1.2-0.4c-0.4-0.2-0.7-0.5-0.9-0.9c-0.2-0.4-0.4-0.8-0.4-1.2c0-0.5,0.1-0.9,0.4-1.2 c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.2-0.4c0.5,0,0.9,0.1,1.3,0.4c0.4,0.2,0.7,0.5,0.9,0.9 C395.5,55.8,395.6,56.2,395.6,56.6 M394.6,58c0.4-0.4,0.6-0.9,0.6-1.4c0-0.6-0.2-1-0.6-1.4s-0.9-0.6-1.4-0.6s-1,0.2-1.4,0.6 c-0.4,0.4-0.6,0.9-0.6,1.4c0,0.6,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.4,0.6S394.2,58.4,394.6,58 M393.6,56.8c0.1,0.1,0.2,0.1,0.2,0.1 c0.1,0.1,0.2,0.2,0.2,0.3c0,0,0.2,0.3,0.4,0.8h-0.8c-0.3-0.5-0.4-0.8-0.5-0.9c-0.1-0.1-0.2-0.2-0.3-0.2c0,0-0.1,0-0.1,0v1.1h-0.6 v-2.6h1.2c0.4,0,0.6,0.1,0.7,0.2c0.2,0.2,0.2,0.3,0.2,0.6c0,0.2-0.1,0.4-0.2,0.5C393.9,56.6,393.8,56.7,393.6,56.8 M393.5,56.3 c0.1-0.1,0.1-0.2,0.1-0.3s-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.1-0.4-0.1h-0.3v0.7h0.3C393.3,56.4,393.4,56.4,393.5,56.3 M318.4,33.5 h13.9c0-6-3.9-8.4-6.8-8.4C322.1,25.2,318.6,27.9,318.4,33.5 M276.5,33.6h13.9c0-6-3.9-8.4-6.8-8.4C280.3,25.2,276.8,28,276.5,33.6 M70.3,33.7h13.9c0-6-3.9-8.4-6.8-8.4C74.1,25.3,70.6,28.1,70.3,33.7">
</path>
</g>
</svg>
</a>
<div class=" d-flex align-items-center align-items-lg-end justify-content-end">
<button type="button" class=" btn text-light pl-lg-0 pb-lg-0">
<i class="fas fa-user d-md-none"></i>
<span class="d-none d-md-inline-block bolder ">LOGIN</span>
</button>
<button type="button" class="subscribe-btn text-dark text-uppercase ">Subscribe <i
class="fas fa-greater-than fa"></i></button>
<button class=" navbar-toggler pr-0 text-right d-lg-none" data-toggle="collapse"
data-target="#thetarget">
<i class="fas fa-bars"></i>
</button>
</div>
</nav>
</div>
<div class="header-bottom d-none d-lg-flex ">
<nav class=" d-flex ">
<ul class="d-flex ">
<li class="pl-0"><a href="#">U.S.</a></li>
<li><a href="#">World</a></li>
<li><a href="#">Business</a></li>
<li class="px-0"><a href="#">Tech & Science</a></li>
<li><a href="#">Culture</a></li>
<li><a href="#">Newsgeek</a></li>
<li><a href="#">Sports</a></li>
<li><a href="#">Health</a></li>
<li><a href="#">The Debate</a></li>
<li><a href="#">Vantage</a></li>
<li class="pr-lg-0"><a href="#">Weather</a></li>
</ul>
<form action="/action_page.php" class="form-inline d-lg-flex">
<input type="search" placeholder="Search">
<i class="fas fa-search"></i>
</form>
</nav>
<div class="">
</div>
</div>
<div class="container-fluid wrapper-content p-0 d-flex flex-column flex-md-row flex-md-wrap ">
<section class="story-cards top-story card border-0 mb-3 col-md-7 col-lg-6 px-lg-4">
<h2 class="d-none">Header</h2>
<div class="sticky">
<article class="card-body p-0">
<span class="text-uppercase d-block py-2">Top Story</span>
<figure>
<img class="w-100 h-100"
src="https://d.newsweek.com/en/full/1597912/police.jpg?w=591&h=364&f=d2bbaec92527cd6bc609efea5f4b7114"
alt="">
<a href="#" class="btn">U.S.</a>
</figure>
<h2 class="">
<a href="#">Four Louisiana Cops Suspended After Video Shows Them Beating Black Man</a></h2>
<p>"If the officers violated any of our policies, they will be disciplined accordingly," said
Shreveport Police Chief Ben Raymond.</p>
</article>
</div>
</section>
<section class="story-cards featured-stories card border-0 mb-3 col-md-5 pr-md-0 col-lg-3 ">
<h2 class="d-none">Header</h2>
<article class="card-body px-0 py-1 py-md-0">
<span class="text-uppercase d-block py-2">Featured Stories</span>
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1597895/us-attorney-general-william-barr.jpg?w=397&h=265&q=90&f=5c00cbb5df1cba96b6b637519146c714"
alt="">
<a href="#" class="btn btn-light border-dark">U.S.</a>
</figure>
<h2 class="pt-2"><a href="#">U.S. AG William Barr Calls Trump 'Committed' To Reforming Criminal
Justice</a></h2>
<p>Barr said Trump "didn't require the crisis we have today" in order to start making efforts
towards reforming police.</p>
</article>
<article class="card-body px-0 py-1">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1597859/iran-economy-lawmakers-members-parliament.jpg?w=397&h=265&q=90&f=b4816d887e60f8798d505853e921ea7b"
alt="">
<a href="#" class="btn btn-light border-dark">U.S.</a>
</figure>
<h2 class="pt-2"><a href="#">Iran Lawmakers Chant 'Death to America' As George Floyd Protests
Intensify</a></h2>
<p>The chants came at the behest of lawmaker Ahmad Naderi, who asked those in attendance "to show
respect for the movement of the oppressed in the U.S." with their slogan.</p>
</article>
<article class="card-body px-0 py-1">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1597835/defund-police.jpg?w=397&h=265&q=90&f=f54a60e50d5443505dc4cd45c2f351d0"
alt="">
<a href="#" class="btn btn-light border-dark">CULTURE</a>
</figure>
<h2 class="pt-2"><a href="#">What Biden's Potential Vice Presidential Picks Say About Defunding
Police</a></h2>
<p>Joe Biden's top picks, with the exception of Senator Kamala Harris, largely demurred or did not
respond to Newsweek's requests for comment about the issue.</p>
</article>
<article class="card-body px-0 py-1">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1597796/nuclear-testing.jpg?w=397&h=265&q=90&f=c903e3584d992c026d11f045bcd43ada"
alt="">
<a href="#" class="btn btn-light border-dark">U.S.</a>
</figure>
<h2 class="pt-2"><a href="#">China Warns U.S. Not to Start Nuclear Testing Again</a></h2>
<p>While neither the United States nor China has ratified a 1996 nuclear test ban, neither has
detonated such weapons of mass destruction.</p>
</article>
<article class="card-body px-0 py-1">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1597793/democrats-unveil-sweeping-police-reform-bill.jpg?w=397&h=265&q=90&f=2960cd1766ea8dcd23e944fc69bc15df"
alt="">
<a href="#" class="btn btn-light border-dark">CULTURE</a>
</figure>
<h2 class="pt-2"><a href="#">How Democrats' Bill Could Change U.S. Policing</a></h2>
<p>Getting the reform package, which includes a ban on police chokeholds and the elimination of
qualified immunity for officers, across the finish line will not be an easy task—and Democrats
know it.</p>
</article>
</section>
<section class="container-fluid p-0 debate-section col-lg-3 ">
<h2 class="d-none">Section-Header</h2>
<div class="sticky-lg">
<article class="wrapper-debate mb-3 p-3 pt-lg-0 pl-lg-0">
<a href="#" class="text-uppercase font-weight-bold d-block py-2">The debate</a>
<div class="debate media first align-items-center">
<img class="align-self-start mt-2"
src="https://d.newsweek.com/en/full/1596838/eugene-kontorovich.png?w=150&h=150&f=814307c1a56b61776f2e6954a2ec2cdd"
alt="">
<div class="media-body px-3">
<h3 class="my-0">Governors Can't Pick and Choose Constitutional Rights</h3>
<p class="mb-lg-0">By <span>
Eugene Kontorovich</span></p>
</div>
</div>
<div class="versus d-flex align-items-center">
<div class=" w-100">
</div>
<i class="btn text-light btn-sm rounded-circle">
VS
</i>
</div>
<div class="debate media align-items-center">
<div class="media-body px-3">
<h3 class="my-0">Pandemic Constitutional Rights: Not an All-Or-Nothing Proposition</h3>
<p>By <span>
Michele Goodwin</span></p>
</div>
<img class="align-self-start mt-2"
src="https://d.newsweek.com/en/full/1596837/michele-goodwin.png?w=150&h=150&f=1ca7b38fdf287cb9199f0c5b38479324"
alt="">
</div>
</article>
<ul class="opinion p-3 bg-white list-group list-group-flush pl-lg-0">
<li><a href="#" class="text-uppercase font-weight-bold d-block py-2">opinion</a></li>
<li class="list-group-item px-0">
<div class="media">
<img src="https://d.newsweek.com/en/full/97976/robert-reich.png?w=63&h=63&f=297351a03eaa549128026042394c9580"
alt="">
<div class="media-body px-3">
<a href="#">Trump's Military Threat Backfired. But Will It Back Him if He Won't
Go?</a>
<p class="my-0 text-uppercase bolder"> BY <span>
Robert Reich</span></p>
</div>
</div>
</li>
<li class="list-group-item px-0">
<div class="media">
<img src="https://d.newsweek.com/en/full/1596892/david-brog.png?w=63&h=63&f=be17b53c8fe5a9ba69341d08c1e56107"
alt="">
<div class="media-body px-3">
<a href="#">The Return of Economic Nationalism</a>
<p class="my-0 text-uppercase bolder"> BY <span>
David Brog</span></p>
</div>
</div>
</li>
<li class="list-group-item px-0">
<div class="media">
<img src="https://d.newsweek.com/en/full/1596798/jamie-metzl-glenn-s-gerstell.png?w=63&h=63&f=76b2841a9a38a6232fd951c5fe94ffaf"
alt="">
<div class="media-body px-3">
<a href="#">To Prevent the Next Pandemic, the WHO and Spy Agencies Must Join
Forces</a>
<p class="my-0 text-uppercase bolder"> BY <span>
Jamie Metzl and Glenn S. Gerstell</span></p>
</div>
</div>
</li>
<li class="list-group-item px-0">
<div class="media">
<img src="https://d.newsweek.com/en/full/1597768/erica-buist.png?w=63&h=63&f=cf4154facd9999ca1f661b9ab1897c02"
alt="">
<div class="media-body px-3">
<a href="#">If Monuments to Slavers Were 'Educational,' We'd Have Hitler Statues
Too</a>
<p class="my-0 text-uppercase bolder"> BY <span>
Erica Buist</span></p>
</div>
</div>
</li>
<li class="list-group-item px-0">
<div class="media">
<img src="https://d.newsweek.com/en/full/1563625/nigel-farage.png?w=63&h=63&f=241bf306fe74b397c2ecf4116cc79b62"
alt="">
<div class="media-body px-3">
<a href="#">Trump Is Right to Demand Law and Order in America</a>
<p class="my-0 text-uppercase bolder"> BY <span>
Nigel Farage</span></p>
</div>
</div>
</li>
<li class="list-group-item px-0">
<div class="media">
<img src="https://d.newsweek.com/en/full/1597205/nave-dromi.png?w=63&h=63&f=37b21e6fd643e4989d412c14fedb87af"
alt="">
<div class="media-body px-3">
<a href="#">We Must Re-Think Identity, Privilege and Oppression in the Middle
East</a>
<p class="my-0 text-uppercase bolder"> BY <span>
Nave Dromi</span></p>
</div>
</div>
</li>
</ul>
</div>
</section>
<section
class="story-cards featured-stories sponsored-section card my-3 border-0 px-0 pl-md-3 pr-md-0 col-md-5 col-lg-3 ">
<h2 class="d-none">Section-Header</h2>
<div class="container-fluid px-md-0 sticky">
<article class="card-body p-0 my-4">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1588243/roborock-h6.jpg?w=500&h=333&f=6f93e5f61d1abdc1297d7410d83ad030"
alt="">
<a href="#" class="btn ">SPONSORED INSIGHT</a>
</figure>
<div class="px-3">
<h2 class="pt-2"><a href="#">Looking for a Powerful, Lightweight and Long-lasting Cordless
Vacuum?</a></h2>
<p>Roborock H6, 2020 Red Dot Award Winner,
Ultra-Long lasting LiPo battery, available now on Amazon.</p>
</div>
</article>
<article class="card-body p-0 my-4">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1593017/tech-academy.jpg?w=500&h=333&l=0&t=0&f=dfc40b158af88b92969e296c072ff204"
alt="">
<a href="#" class="btn btn-light border-dark">SPONSORED INSIGHT</a>
</figure>
<div class="px-3">
<h2 class="pt-2 d-flex align-items-start"><a href="#">Want to Learn to Code Online?</a></h2>
<p>TIf you are thinking about changing career or you have recently lost your job, this might
be the time to think about a career in coding.</p>
</div>
</article>
<article class="card-body p-0 my-4">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1583931/marymount-international-school-rome.jpg?w=500&h=333&l=0&t=0&f=e46dd3ad8c634309d312f25f7134ce3c"
alt="">
<a href="#" class="btn btn-light border-dark">SPONSORED INSIGHT</a>
</figure>
<div class="px-3">
<h2 class="pt-2"><a href="#">What is an IB Private Education and Why is it so Important?</a>
</h2>
<p>The aim of the IB is to offer the best possible international education for students of
all backgrounds and from every part of the world. Find out more.</p>
</div>
</article>
<article class="card-body p-0 my-4">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1568509/newsweek-amplify.png?w=500&h=333&f=98c0ebfc554597997a0de3bd6159812a"
alt="">
</figure>
<div class="px-3">
<h2 class="pt-2"><a href="#">Newsweek AMPLIFY Launches Strategic Partnership Solutions for
Brands</a></h2>
<p>Newsweek AMPLIFY, the company's performance marketing business unit, has launched a new
program to empower digital brands with comprehensive content marketing and advertising
strategies.</p>
</div>
</article>
<article class="card-body p-0 my-4">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1592805/physical-rehabilitation-centers-2020.jpg?w=500&h=333&l=30&t=42&f=6984de90d0b11d8fb7e6b1758948c326"
alt="">
</figure>
<div class="px-3">
<h2 class="pt-2 d-flex align-items-start"><a href="#">Best Physical Rehab Centers</a></h2>
<p>Newsweek is partnering with the respected global data research firm Statista Inc. to
establish a ranking of Best Physical Rehabilitation Centers in the United States 2020.
If you work in this field, please participate in our survey.</p>
</div>
</article>
</div>
</section>
<section class="more-stories-hero d-flex flex-column px-0 px-md-3 col-md-7 col-lg-6 px-lg-4">
<ul class="more-stories px-3 px-md-0 bg-white list-group list-group-flush order-md-1">
<li class="list-group-item px-0 pb-1 text-uppercase bolder">More stories</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1598123/new-jersey-state-police.jpg?w=95&h=95&f=4c2548840d2ac897a6145f019be1e603"
alt="">
<div>
<a href="#" class="title bolder mb-2">Video Released Of Unarmed Black Man Killed
During NJ Traffic Stop In May</a>
<p>
Maurice Gordon was shot by police on May 23 after his car became disabled during a
routine traffic stop on the Garden State Parkway in New Jersey.
</p>
</div>
</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1598108/people-wearing-masks-nyc.jpg?w=95&h=95&f=970ebf056392b564fd1a759d73fdc7b3"
alt="">
<div>
<a href="#" class="title bolder mb-2">WHO Walks Back Comments About 'Rare'
Asymptomatic Spread of COVID-19</a>
<p>
"Some people who are asymptomatic, or some people who don't have symptoms, can transmit
the virus on," the World Health Organization's Dr. Maria Van Kerkhove said Tuesday.
</p>
</div>
</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1598074/california-reopening-venice.jpg?w=95&h=95&f=4e8de830df7557c2f5634846b96e74f6"
alt="">
<div>
<a href="#" class="title bolder mb-2">New Coronavirus Infections Hit 7-Day Average
Highs in States Across U.S.</a>
<p>
At least 14 states saw spikes in confirmed cases during the first week of June. While
some health officials associate increasing case counts with reopening procedures, others
attribute higher numbers to expanded diagnostic testing.
</p>
</div>
</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1598099/buffalo.jpg?w=95&h=95&f=b04b745b85d6cc4491fae7fae1078d3d"
alt="">
<div>
<a href="#" class="title bolder mb-2">Buffalo Police Dispatcher Suspended For Calling
Protesters 'Rabid Animals' </a>
<p>
Buffalo Police Commissioner Byron Lockwood confirmed that the employee has been
suspended and an investigation has been launched.
</p>
</div>
</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1597985/covid19-coronavirus-getty.jpg?w=95&h=95&f=51c994399759133ad502771c2e223a5a"
alt="">
<div>
<a href="#" class="title bolder mb-2">Anti-Abortion Groups Say COVID-19 Vaccines May
Use Cells From Human Fetuses</a>
<p>
Organizations have written to the Trump and Trudeau administrations.
</p>
</div>
</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1598065/voter-issues-georgia-primary.jpg?w=95&h=95&f=d740f3bc4186a9c797fe87b5aafe4b36"
alt="">
<div>
<a href="#" class="title bolder mb-2">Georgia Voters Report Machine Problems, Long
Lines at Polls During Primary </a>
<p>
"Voters are either extremely livid or voters are just leaving altogether—or both," state
Representative Jasmine Clark told Newsweek.
</p>
</div>
</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1598050/rice-planters-north-korea.jpg?w=95&h=95&f=8dfcbd3dc9947cc047fdb37f5f4a8ef3"
alt="">
<div>
<a href="#" class="title bolder mb-2">U.N. North Korea Expert Urges Security Council
to Reconsider Sanctions</a>
<p>
The special rapporteur also said there were reports of families in the country starving
as some were eating just two meals a day.
</p>
</div>
</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1598028/defund-police.jpg?w=95&h=95&f=0aa7f90e2b28b925ff89459833858280"
alt="">
<div>
<a href="#" class="title bolder mb-2">Majority of Americans Oppose Cuts to Police
Department Funding, Poll Shows</a>
<p>
As the movement to defund the police grows, legislators on Capitol Hill are pushing back
on the concept.
</p>
</div>
</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1598030/prince-andrew-pre-christmas-lunch.jpg?w=95&h=95&f=cc6ef84f7ffa5345ccee89d5e70e0bd4"
alt="">
<div>
<a href="#" class="title bolder mb-2">Prince Andrew Will be Forced to Testify on
Jeffrey Epstein, Experts Say</a>
<p>
Demands for The Duke of York's testimony on Jeffrey Epstein will be approved and he can
only refuse to answer questions if it would incriminate him, legal experts tell
Newsweek.
</p>
</div>
</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1598047/defund-police-yougov-poll.jpg?w=95&h=95&f=0d5fdf6cff258b4e1ea9e07e0a19df75"
alt="">
<div>
<a href="#" class="title bolder mb-2">Police Forces Facing Funding Cuts in Wake of
George Floyd's Death</a>
<p>
Departments across the country have set out plans to redistribute money that would
normally spent on police.
</p>
</div>
</li>
<li class="list-group-item px-0">
<img class="float-left pl-0 pr-3 pb-1"
src="https://d.newsweek.com/en/full/1597972/democrats-policing-act.jpg?w=95&h=95&f=f2400a29d896d0485c667fe80fdfbe71"
alt="">
<div>
<a href="#" class="title bolder mb-2">The Key Reforms in Democrats' Proposed Justice
in Policing Act</a>
<p>
Democrats have put forward a series of measures aimed at improving law enforcement
practices and accountability for misconduct.
</p>
</div>
</li>
</ul>
<div class="main-stories mt-3 order-md-0 bg-white">
<h2 class="pl-3 pl-md-0"><a href="#" class="bolder text-uppercase">My Turn</a></h2>
<section class="d-md-flex">
<h2 class="d-none">Section-Header</h2>
<div class="card my-turn-and-culture px-3 px-md-1 pt-0 pb-4 pb-md-1 col-md-4">
<figure class="position-relative mb-1">
<img class="w-100"
src="https://d.newsweek.com/en/full/1597646/tsunami-family-brothers.jpg?w=397&h=397&f=178afe1ac0a38a65047401f0ccbb1787"
alt="">
<span class="position-absolute">GEORGE FLOYD</span>
</figure>
<div class="card-body p-0">
<div class="card-tittle bolder"><a href="#">'We Lost Our Parents in the 2004 Tsunami'</a>
</div>
</div>
</div>
<div class="card my-turn-and-culture px-3 px-md-1 pt-0 pb-4 pb-md-1 col-md-4">
<figure class="position-relative mb-1">
<img class="w-100"
src="https://d.newsweek.com/en/full/1596881/meghan-markle-look-alike-new-jersey.png?w=397&h=397&f=f991f48848d948d0de8bbdb99fed81f5"
alt="">
<span class="position-absolute">GEORGE FLOYD</span>
</figure>
<div class="card-body p-0">
<div class="card-tittle bolder"><a href="#">'I Was Bullied About My Appearance, Now I'm A
Meghan
Markle Look-Alike'</a> </div>
</div>
</div>
<div class="card my-turn-and-culture px-3 px-md-1 pt-0 pb-4 pb-md-1 col-md-4">
<figure class="position-relative mb-1">
<img class="w-100"
src="https://d.newsweek.com/en/full/1596282/mosul-iraq-us-troop-withdraw.jpg?w=397&h=397&f=535d2d1b0f494663420c7b92dfac0a54"
alt="">
<span class="position-absolute">GEORGE FLOYD</span>
</figure>
<div class="card-body p-0">
<div class="card-tittle bolder"><a href="#">'In Searching for Dead ISIS Fighters in Iraq,
I Found
Refuge in My Friends'</a></div>
</div>
</div>
</section>
<h2 class="pl-3 pl-md-0"><a href="#" class="bolder text-uppercase">Culture & Travel</a></h2>
<section class="d-md-flex">
<h2 class="d-none">Section-Header</h2>
<div class="card my-turn-and-culture px-3 px-md-1 pt-0 pb-4 pb-md-2 col-md-4">
<figure class="position-relative mb-1">
<img class="w-100"
src="https://d.newsweek.com/en/full/1596730/washington-dc-protest.jpg?w=397&h=397&f=21a0453c6dfd82377b0d78b1d6f6a73c"
alt="">
<span class="position-absolute">GEORGE FLOYD</span>
</figure>
<div class="card-body p-0">
<div class="card-tittle bolder">
<a href="#">Black Lives Matter Protests Around the World, in Photos</a>
</div>
</div>
</div>
<div class="card my-turn-and-culture px-3 px-md-1 pt-0 pb-4 pb-md-2 col-md-4 ">
<figure class="position-relative mb-1">
<img class="w-100"
src="https://d.newsweek.com/en/full/1596296/geroge-floyd-mural.jpg?w=397&h=397&f=61c83eaa1f92f5853b3aab9e845082e4"
alt="">
<span class="position-absolute">GEORGE FLOYD</span>
</figure>
<div class="card-body p-0">
<div class="card-tittle bolder"><a href="#">Artists on the Internet are Honoring George
Floyd With
Striking Portraits</a></div>
</div>
</div>
<div class="card my-turn-and-culture px-3 px-md-1 pt-0 pb-4 pb-md-2 col-md-4">
<figure class="position-relative mb-1">
<img class="w-100"
src="https://d.newsweek.com/en/full/1596869/daughters-dust-criterion.jpg?w=397&h=397&f=3d7ef8844d767eed555409dcfbf90c55"
alt="">
<span class="position-absolute">GEORGE FLOYD</span>
</figure>
<div class="card-body p-0">
<div class="card-tittle bolder"><a href="#">Movies by Black Filmmakers Now Streaming Free
on
Criterion Channel</a></div>
</div>
</div>
</section>
</div>
</section>
<section
class="story-cards featured-stories sponsored-section sponsored-section-2 card border-0 mb-3 col-lg-3 pl-lg-0">
<h2 class="d-none">Section-Header</h2>
<div class="sticky-lg">
<article class="card-body p-0 my-4">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1580693/university-north-carolina-asheville.jpg?w=500&h=333&f=3ba9545ca2c492633c28f4c6a42fcd53"
alt="">
<a href="#" class="btn btn-light border-dark">SPONSORED INSIGHT</a>
</figure>
<div class="px-3">
<h2 class="pt-2"><a href="#">What Sets the Leading Liberal Arts Schools Apart?</a></h2>
<p>There are a number of great Liberal Arts Schools in the USA today, but what qualities do
the best of them have?</p>
</div>
</article>
<form action="/action_page.php" class="form d-flex flex-column p-3 mx-auto">
<div class="d-flex">
<span class="mr-3">N</span>
<label for="email" class="mb-2 bolder text-uppercase">Start your day with our top 5
articles</label>
</div>
<input type="text" placeholder="Email address" id="email" class="mb-2">
<button type="button" class="btn btn-block btn-danger text-uppercase bolder ">Free Sign Up <i
class="fas fa-greater-than"></i></button>
</form>
<article class="card-body p-0 my-4">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1579970/minnesota-state-university-mankato.jpg?w=500&h=333&l=0&t=0&f=be3deb29cdda5635e8d4655b0d0df489"
alt="">
<a href="#" class="btn btn-light border-dark">SPONSORED INSIGHT</a>
</figure>
<div class="px-3">
<h2 class="pt-2 d-flex align-items-start"><a href="#">What Qualities Make a Leading
University?</a></h2>
<p>A Leading University has to have a track record of producing well qualified, gifted and
employable candidates. Which schools earn the accolade?</p>
</div>
</article>
<article class="card-body p-0 my-4">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1588123/nw-food-medicine-sponsored.jpg?w=500&h=333&f=03bfa19e4e38b9de86f3c778fd4c3852"
alt="">
<a href="#" class="btn btn-light border-dark">SPONSORED INSIGHT</a>
</figure>
<div class="px-3">
<h2 class="pt-2"><a href="#">Newsweek Special Edition: Food as Medicine</a></h2>
<p>Humans have been using natural remedies like spices and herbs to heal common ailments for
centuries. Now food science is proving many of those traditions true and innovating new
ways to heal our bodies from the inside out. Discover the power of plant-based nutrition
with this Newsweek Special Edition and start your journey to a healthier you.</p>
</div>
</article>
<article class="card-body p-0 my-4">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1587568/infection-prevention-products-banner.jpg?w=500&h=333&f=c96d696a017681c45d2f464a2ae0e23d"
alt="">
<a href="#" class="btn btn-light border-dark">SPONSORED INSIGHT</a>
</figure>
<div class="px-3">
<h2 class="pt-2"><a href="#">Best Infection Prevention Products</a></h2>
<p>During the coronavirus outbreak, health care is more important than ever. In Newsweek's
first Best Health Care series, we highlight the best infection prevention products.</p>
</div>
</article>
<article class="card-body p-0 my-4">
<figure>
<img class="w-100"
src="https://d.newsweek.com/en/full/1592802/addiction-treatment-centers-2020.jpg?w=500&h=333&l=43&t=50&f=592690018959dfb67278ecc6236ba576"
alt="">
<a href="#" class="btn btn-light border-dark">SPONSORED INSIGHT</a>
</figure>
<div class="px-3">
<h2 class="pt-2 d-flex align-items-start"><a href="#">Best Addiction Treatment Centers</a>
</h2>
<p>Newsweek and Statista are partnering to establish a ranking of Best Addiction Treatment
Centers in the United States. If you work in this field, this survey is for you.</p>
</div>
</article>
</div>
</section>
</div>
<div class="magazine-wrapper bg-white">
<h6 class="text-upppercase bolder text-center pt-3">
<span>
N
</span>
IN THE MAGAZINE
</h6>
<div class="in-the-magazine w-100 d-md-flex flex-md-wrap">
<div class=" px-3 pt-1 border-0 col-md-3 d-md-flex flex-md-column justify-content-center justify-content-md-end">
<figure class="position-relative mb-0">
<img class="w-100"
src="https://d.newsweek.com/en/full/1597761/cover-june-19-26-2020.jpg?w=360&h=480&q=90&f=4e759c49f52dd6986cbe78bcf012b463"
alt="the end of the hong kong magazine">
<span class="position-absolute bolder">JUNE 26 ISSUE</span>
</figure>
<a href="#" class="card-title text-center d-block text-dark bolder text-uppercase py-1 mb-0">See
All Features <i class="fas fa-greater-than"></i></a>
</div>
<div class="magazine card px-3 pt-3 pb-1 border-0 col-md-3 ">
<picture>
<img src="#" alt="">
</picture>
<div class="card-body p-0">
<p class="m-0 ">
<span class="text-uppercase d-inline-block px-1">
cover
</span>
<span class="text-uppercase d-inline-block px-1">
World
</span>
</p>
<div>
<a href="#" class="card-subtitle bolder text-capitalize">On Tiananmen Anniversary,
Hong Kong Protesters Brace for Chinese Crackdown</a>
</div>
</div>
</div>
<div class="magazine card px-3 pt-3 pb-1 border-0 col-md-3">
<picture>
<img src="#" alt="">
</picture>
<div class="card-body p-0">
<p class="m-0 ">
<span class="text-uppercase d-inline-block px-1">
cover
</span>
<span class="text-uppercase d-inline-block px-1">
World
</span>
</p>
<div>
<a href="#" class="card-subtitle bolder text-capitalize">I'm Eric Garner's Mom.
Four Cops Must Be Convicted in George Floyd's Death</a>
</div>
</div>
</div>
<div class="magazine card px-3 pt-3 pb-1 border-0 col-md-3">
<picture>
<img src="#" alt="">
</picture>
<div class="card-body p-0">
<p class="m-0 ">
<span class="text-uppercase d-inline-block px-1">
cover
</span>
<span class="text-uppercase d-inline-block px-1">
World
</span>
</p>
<div>
<a href="#" class="card-subtitle bolder text-capitalize">'I've Had to Paint 'Black
Owned Business' on My Bar During the Riots'</a>
</div>
</div>
</div>
<div class="magazine card px-3 pt-3 pb-1 border-0 col-md-3">
<picture>
<img src="#" alt="">
</picture>
<div class="card-body p-0">
<p class="m-0 ">
<span class="text-uppercase d-inline-block px-1">
cover
</span>
<span class="text-uppercase d-inline-block px-1">
World
</span>
</p>
<div>
<a href="#" class="card-subtitle bolder text-capitalize">'I'm a Blue Lives Matter
Activist, We've Defended Those Now Breaking Laws'</a>
</div>
</div>
</div>
<div class="magazine card px-3 pt-3 pb-1 border-0 col-md-3">
<picture>
<img src="#" alt="">
</picture>
<div class="card-body p-0">
<p class="m-0 ">
<span class="text-uppercase d-inline-block px-1">
cover
</span>
<span class="text-uppercase d-inline-block px-1">
World
</span>
</p>
<div>
<a href="#" class="card-subtitle bolder text-capitalize">Willie Mays Explains why
the All-Star Game Meant so Much to his Generation</a>
</div>
</div>
</div>
<div class="magazine card px-3 pt-3 pb-1 border-0 col-md-3">
<picture>
<img src="#" alt="">
</picture>
<div class="card-body p-0">
<p class="m-0 ">
<span class="text-uppercase d-inline-block px-1">
cover
</span>
<span class="text-uppercase d-inline-block px-1">
World
</span>
</p>
<div>
<a href="#" class="card-subtitle bolder text-capitalize">Judd Apatow on Pete
Davidson's 'Brave' Work in 'The King of Staten Island'</a>
</div>
</div>
</div>
<div class="magazine card px-3 pt-3 pb-1 border-0 col-md-3">
<picture>
<img src="#" alt="">
</picture>
<div class="card-body p-0">
<p class="m-0 ">
<span class="text-uppercase d-inline-block px-1">
cover
</span>
<span class="text-uppercase d-inline-block px-1">
World
</span>
</p>
<div>
<a href="#" class="card-subtitle bolder text-uppercase">Rocket Men</a>
</div>
</div>
</div>
</div>
</div>
<div class="editors-pick-wrapper bg-white mt-3">
<h4 class="text-uppercase d-block pt-3 pb-2 text-center bolder "><span
class="d-inline-block py-1 px-2 text-white bolder">N</span> Editor's Pick</h4>
<section
class="story-cards featured-stories card border-0 pb-4 px-3 pt-md-3 d-md-flex flex-md-row flex-md-wrap">
<h2 class="d-none">Section-Header</h2>
<article class="card-body px-0 pr-md-3 py-md-0 col-md-6 col-lg-3">
<figure class="mb-0">
<img class="w-100"
src="https://d.newsweek.com/en/full/1598706/joe-biden.jpg?w=397&h=295&f=9fa7e5090d6c6941a0e334ebe341edf6"
alt="">
<a href="#" class="btn btn-light border-dark">U.S.</a>
</figure>
<h2 class="pt-2"><a href="#">Joe Biden Wants to See Studies About Feasibility of Slavery
Reparations</a></h2>
<p>"If, in fact, there are ways to get direct payments for reparations, I want to see it," Joe Biden
said Thursday</p>
</article>
<article class="card-body px-0 pl-md-3 pt-md-0 col-md-6 col-lg-3 pr-lg-3">
<figure class="mb-0">
<img class="w-100"
src="https://d.newsweek.com/en/full/1598792/jefferson-davis-statue-richmond-virginia-2017.jpg?w=397&h=295&f=4a694c8ba25a3946a4ea1d2dc93e2331"
alt="">
<a href="#" class="btn btn-light border-dark">U.S.</a>