-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1252 lines (1228 loc) · 92.2 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="author" content="Jessica Michelle Farias Rosado" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Newsweek - News, Analysis, Politics</title>
<link rel="shortcut icon" href="assets/images/icon.png">
<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="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="assets/styles/reset.css">
<link rel="stylesheet" href="assets/styles/style.css">
</head>
<body>
<header class="">
<div class= "w-100">
<div class="d-none d-lg-block d-xl-block">
<div class="d-flex justify-content-between header-lg col-12 align-items-center ">
<div class="col-2 ">
<div class="city-country d-flex flex-row flex-wrap align-items-center">
<img src="https://g.newsweek.com/img/weather/28.png" alt="cloudy image">
<p class="pl-2 font-weight-bolder text-white p-2"> 35° Mérida, MX</p>
<img class="p-1" src="https://g.newsweek.com/img/weather/ic-white-arrow.png" alt="arrow white">
</div>
<p class="text-white">Tue, May 26, 2020</p>
</div>
<div class="col-4">
<svg version="1.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" style="enable-background: new 0 0 395.6 60;" xml:space="preserve">
<path class="principal-logo"
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>
</svg>
</div>
<div class="col-2 d-flex align-self-end pb-3 align-items-center">
<p class="text-white font-weight-bolder mr-2 ml-2">LOGIN</p>
<button class=" btn-subscribe btn-warning font-weight-bolder p-1"> <b>SUBSCRIBE</b></button>
</div>
</div>
</div>
</div>
<!-- SICKER HEADER -->
<div class="d-block d-lg-none fixed-top">
<div class="row d-flex justify-content-between header-sm align-items-center">
<div class="col-4 col-sm-4 col-lg-1"><!--Newsweek logo-->
<svg class="p-2" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 60" style="enable-background: new 0 0 395.6 60;" xml:space="preserve">
<path class="principal-logo"
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>
</svg>
</div>
<div class="col d-flex d-row justify-content-end align-items-center">
<svg class="principal-logo mr-2" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/>
</svg>
<button class=" btn-subscribe btn-warning font-weight-bolder "> <b>SUBSCRIBE</b></button>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve" width="0.9em" height="1em" class="principal-logo ml-2"><g><g>
<rect y="2" width="50" height="4" data-original="#000000"/>
<rect y="16" width="50" height="4" data-original="#000000"/>
<rect y="30" width="50" height="4" data-original="#000000"/>
<rect y="44" width="50" height="4" data-original="#000000"/></g></g>
</svg>
</div>
</div>
</div>
</header>
<nav class="d-flex align-items-center sizelink-19 ">
<div class="header-bottom h-100 w-100 d-none d-lg-block">
<div class="w-100">
<ul class="nav d-flex justify-content-between align-items-center w-100 ">
<li><a class="nav-link font-weight-bold text-dark" href="https://www.newsweek.com/us">U.S.</a></li>
<li class="nav-item"><a class="pl-3 color-red border-left" href="https://www.newsweek.com/world">World</a></li>
<li class="nav-item"><a class="pl-3 color-red border-left" href="https://www.newsweek.com/business">BusIness</a></li>
<li class="nav-item"><a class="pl-3 color-red border-left" href="https://www.newsweek.com/tech-science">Tech&Science</a></li>
<li class="nav-item"><a class="pl-3 color-red border-left" href="https://www.newsweek.com/culture">Culture</a></li>
<li class="nav-item"><a class="pl-3 color-red border-left" href="https://www.newsweek.com/newsgeek">Newsgeek</a></li>
<li class="nav-item"><a class="pl-3 color-red border-left" href="https://www.newsweek.com/sports">Sports</a></li>
<li class="nav-item"><a class="pl-3 color-red border-left" href="https://www.newsweek.com/health">Health</a></li>
<li class="nav-item"><a class="pl-3 color-red border-left" href="https://www.newsweek.com/the-debate">Debate</a></li>
<li class="nav-item"><a class="pl-3 color-red border-left" href="https://www.newsweek.com/vantage">Vantage</a></li>
<li class="nav-item"><a class="pl-3 color-red border-left" href="https://www.newsweek.com/weather">Weather</a></li>
<li class="nav-item"><div class="search-logo">Search</div></li>
<li class="nav-item"><div class="mr-5"></div></li>
</ul>
</div>
</div>
</nav>
<main>
<div class="container-fluid principal-news p-1">
<hr>
<!-- PRINCIPAL CONTAINER FIRST ROW-->
<div class="row m-2">
<!-- TOP STORY-->
<div class="col-lg-6 order-lg-2
col-md-6 order-md-2
col-sm-12 order-sm-1 mt-3">
<div>
<section class="sizelink-22 sizetext-15">
<h2 class="gray font-weight-bold">TOP STORY</h2>
<article>
<img class="w-100" src="assets/images/column2-img1.jpg" alt="Donald Trump">
<h3>
<a class="underline-red" href="#">
<b>Disapproval of Donald Trump Climbs As U.S. Coronavirus Deaths Near
100,000</b></a>
</h3>
<p>A presidential approval rating tracker put Trump's average disapproval rating at more
than 53
percent on Monday.</p>
</article>
</section>
<div class="d-none d-md-block">
<section class="sizelink-16 decoration-none">
<h2 class="gray font-weight-bold mt-5">HEROES OF THE PANDEMIC</h2>
<div class="d-flex flex-row row heroes-section">
<article class="d-flex flex-column col">
<img src="assets/images/column2-img2.jpg" alt="Doctors and Nurses Crossing de border">
<h3><a href="#" class="m-1 w-100 gray">The Doctors and Nurses Crossing the Border
Daily to Help Asylum Seekers</a></h3>
</article>
<article class="d-flex flex-column col">
<img src="assets/images/column2-img3.jpg" alt="Charity Helping Survivors of Pandemic">
<h3><a href="#" class="m-1 w-100 gray">The Charity Helping Vulnerable Holocaust
Survivors During the Pandemic</a></h3>
</article>
<article class="d-flex flex-column col">
<img src="assets/images/column2-img4.jpg" alt="Women Launch Campaign">
<h3><a href="#" class="m-1 w-100 gray">Women Launch Campaign Urging People to Donate
Their Stimulus Checks</a></h3>
</article>
</div>
</section>
<section class="sizelink-16 decoration-none">
<h2 class="gray font-weight-bold mt-4">CULTURE & TRAVEL</h2>
<div class="d-flex flex-row row heroes-section ">
<article class="d-flex flex-column col">
<img src="https://d.newsweek.com/en/full/1594336/bark-europa-tall-ship.webp?w=397&h=397&f=8af37a53bf929be520c7a63efd4d0991" alt="cool tall ships">
<h3><a href="#" class="gray">Tall Ship Sails 10,000 Miles From the End of the World During COVID-19</a></h3>
</article>
<article class="d-flex flex-column col">
<img src="https://d.newsweek.com/en/full/1592231/manhattan-beach-california-family-photo.webp?w=397&h=397&f=5176df4715236d5667a0d55d3b27cb7a" alt="What to Know Before You Go">
<h3><a href="#" class="gray">What Beaches Are Open Now? What to Know Before You Go</a></h3>
</article>
<article class="d-flex flex-column col">
<img src="https://d.newsweek.com/en/full/1590663/gorilla.jpg?w=397&h=397&f=b70f06ae5ba228d5de7c644f42cf94a1" alt="How Coronavirus impact tourism">
<h3><a href="#" class="gray">How Coronavirus—and Lack of Tourism—Impact East Africa's Gorillas</a></h3>
</article>
</div>
</section>
<section class="stories-section sizelink-17">
<h2 class="gray font-weight-bold mt-5">MORE STORIES </h2>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594659/house-votes-ppp-reform-bill.jpg?w=95&h=95&f=94e73fef2639ea1112b0410f96e77a76"
alt="House Passes Small Businesses Bill">
<div>
<h3 class="pb-2"><a href="#" class="underline-red">House Passes Small Businesses Bill Tripling
Window to Use Pandemic Loans</a></h3>
<p>The bill made a number of amendments to the popular Paycheck Protection
Program.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594611/mark-zuckerberg.jpg?w=95&h=95&f=538c09ac369c9e6b968a7b241492e250"
alt="Zuckerberg Says something about politicians">
<div>
<h3 class="pb-2"><a href="#" class="underline-red">Zuckerberg Says Politicians Can't Say Whatever
They Want on Facebook</a></h3>
<p>Facebook CEO Mark Zuckerberg says Facebook will take down content, even posts
by politicians, if it crosses the social network platform's lines.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row p-1">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594676/nancy-pelosi.jpg?w=95&h=95&f=5088cafb49144c0933bf7ce8cad0ec8d"
alt="Pelosi Says something about Zuckerberg">
<div>
<h3 class="pb-2"><a href="#" class="underline-red">Pelosi Says Zuckerberg 'Panders to White
House'</a></h3>
<p>The House Speaker commented on Facebook CEO Mark Zuckerberg's recent
criticisms of Twitter amid the social platform's conflict with President
Donald Trump.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594542/hong-kong-protest.jpg?w=95&h=95&f=d5557d5ed45b9fa15d32428958e9fa9b"
alt="U.S. politicians such as Pompeo">
<div>
<h3 class="pb-2"><a href="#" class="underline-red">Chinese State Media Outlet Calls Pompeo an
'Arrogant, Hysterical' Hypocrite</a></h3>
<p>"U.S. politicians such as Pompeo arrogantly believe that Hong Kong's destiny
is in their hands," a Global Times editorial said.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594613/trump-obama-stocks.jpg?w=95&h=95&l=50&t=51&f=186cf14912c0a9264e9b441a2653893f"
alt="Trump's Stock Market Gains">
<div>
<h3 class="pb-2"><a href="#" class="underline-red">Trump's Stock Market Gains Once Again Surpass
Those of Obama</a></h3>
<p>While Trump and his supporters have pointed to the stock market's rebound as
a marker of economic success, tens of millions of Americans remain
unemployed as the unemployment rate has surged into the double digits from a
low of 3.5 percent in February.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row p-1">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594672/kayleigh-mcenany-twitter-fact-check-trump-china.jpg?w=95&h=95&l=39&t=24&f=1d0556e6b278a526f4a1f9895ed92761"
alt="Press Sec Hits Twitter">
<div>
<h3><a href="#" class="underline-red">Press Sec Hits Twitter for Singling Out Trump,
Not Chinese Propaganda</a></h3>
<p>White House Press Secretary Kayleigh McEnany pushed back against Twitter CEO
Jack Dorsey's request that people "leave employees" out of the fact-checking
debate, saying the White House would continue to question the people on the
team.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594604/biden-poll-number-decline.jpg?w=95&h=95&l=38&t=40&f=3d023cdc4213a85f9d5150b6e738e098"
alt=">Joe Biden's Lead Over Donald Trump Falls">
<div>
<h3 class="pb-2"><a href="#" class="underline-red">Joe Biden's Lead Over Donald Trump Falls, Poll
Data Reveals</a></h3>
<p>The new survey found that the former vice president's poll lead had fallen by
three percentage points over the last week.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594480/child.jpg?w=95&h=95&f=60527a6f4b158749e35322900accd450"
alt="Coronavirus Pandemic">
<div>
<h3 class="pb-2"><a href="#" class="underline-red">Coronavirus Pandemic Could Push 86 Million
More Kids into Household Poverty</a></h3>
<p>"This report should be a wake-up call for the world," said Save the Children
International CEO Inger Ashing.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594547/people-walk-past-huawei-store.jpg?w=95&h=95&f=62496e2091c30dbab89bc8dee456c1e0"
alt="Contact-Tracing Apps">
<div>
<h3 class="pb-2"><a href="#" class="underline-red">Banning Huawei From U.K. 5G Infrastructure
Might Be 'Impossible'</a></h3>
<p>Prime Minister Boris Johnson was clear he wanted the Chinese company to
provide 5G infrastructure—now he's not so sure.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594564/hangzhou.jpg?w=95&h=95&f=150422facae7e4b6a832ca020592d7fa"
alt="Contact-Tracing Apps">
<div>
<h3 class="pb-2"><a href="#" class="underline-red">Contact-Tracing Apps Could Become Permanent
Once the Pandemic Is Over</a></h3>
<p>Privacy advocates are concerned there could be no definite end to digital
tracing introduced to stem coronavirus outbreaks.</p>
</div>
</article>
</section>
</div>
</div>
</div>
<!-- FEATURED STORIES-->
<div class="col-lg-3 order-lg-1
col-md-6 order-md-1
col-sm-12 order-sm-2
sizelink-24 sizetext-15 mt-3">
<section class="w-100 h-100">
<h2 class="gray font-weight-bold ">FEATURED STORIES</h2>
<div class="sticky-top">
<article class="mb-4">
<img class="w-100" src="assets/images/column1-img1.jpg" alt="House to Extend Small-business">
<h3 class="pt-2 pb-2"><a href="#" class="underline-red"><b>House to Extend Small-Business Loan Aid, Restore Government Spy Powers</b></a></h3>
<p>The votes will mark the first time in American history that members will not have to be physically present on the floor for their position to be officially counted.</p>
</article>
<article class="mb-4">
<img class="w-100" src="assets/images/column1-img2.jpg" alt="World organizacion coronaviruz">
<h3 class="pt-2 pb-2"><a href="#" class="underline-red"><b>World Health Organization Says Coronavirus Cases 'Still On The Way Up'</b></a></h3>
<p>"Right now, we're not in the second wave. We're right in the middle of the first wave globally," said WHO's Executive Director of Emergencies, Dr. Michael Ryan, during a
news conference on Monday.</p>
</article>
<article class="mb-4">
<img class="w-100" src="assets/images/column1-img3.jpg" alt="Yelling Black Man pinned">
<h3 class="pt-2 pb-2"><a href="#" class="underline-red"><b>Black Man Pinned Down by Minneapolis Cop, Yelling
'I Cannot Breathe'</b></a></h3>
<p>"You're a tough guy? A tough guy, huh?" the white police officer can be heard saying
in a
video of the incident.</p>
</article>
<article class="mb-4">
<img class="w-100" src="assets/images/column1-img4.jpg" alt="Yelling Black Man pinned">
<h3 class="pt-2 pb-2"><a href="#" class="underline-red"><b>Black Man Pinned Down by Minneapolis Cop, Yelling
'I Cannot Breathe'</b></a></h3>
<p>"You're a tough guy? A tough guy, huh?" the white police officer can be heard saying
in a
video of the incident.</p>
</article>
<article>
<img class="w-100"
src="https://d.newsweek.com/en/full/1594547/people-walk-past-huawei-store.jpg?w=397&h=265&q=90&f=32b4615693e108d25cb458690668f272"
alt="Yelling Black Man pinned">
<h3 class="pt-2 pb-2"><a href="#" class="underline-red"><b>Bsnning Huawei From U.K. 5G Infrastructure Might Be
'Imposible'</b></a></h3>
<p>Prime Minister Boris Johnson was clear he wanted the Chinese company to provide 5G
infrastructure—now he's not so sure.</p>
</article>
</div>
</section>
</div>
<!-- THE DEBATE SECTION-->
<div class="col-lg-3 order-lg-3
col-md-12 order-md-3
col-sm-12 order-sm-3
sizelink-17 sizetext-14 mt-3">
<section class="w-100 h-100">
<div class="sticky-top">
<h2 class="gray font-weight-bold">THE DEBATE</h2>
<div class="debate-border mt-2 mb-2 pb-2 pt-2">
<div class="d-flex align-items-center">
<img src="assets/images/column3-img1.png" alt="John Doe"
class="mr-2 mt-3 rounded-circle" style="width:60px;">
<div class="media-body">
<a href="#" class="color-red text-left"> Respond to Coronavirus With More Nationalism <br>
<span class="font-weight-normal">BY</span>
</a><a class="autorname"> DINESH D'SOUZA </a>
</div>
</div>
<div>
<div class="border-versus mt-3 mb-3 ali">
<div class="versus d-flex align-items-center justify-content-center">VS</div>
</div>
</div>
<div class="d-flex align-items-center flex-row-reverse">
<img src="assets/images/column3-img2.png" alt="John Doe"
class="mr-3 mt-3 rounded-circle" style="width:60px;">
<div class="media-body">
<a href="#" class="color-red">Respond to Coronavirus With More Globalism <br>
<span class="font-weight-normal">BY</span>
</a><a class="autorname">MARINO CABERA</a>
</div>
</div>
</div>
<div>
<h2 class="gray font-weight-bold">THE OPNINION</h2>
<div class="d-flex align-items-center">
<img src="assets/images/column3-img3.png" alt="John Doe"
class="mr-2 mt-3 rounded-circle" style="width:60px;">
<div class="media-body">
<a href="#" class="color-red">Despite Media Narrative, DeSantis Was Right and
Cuomo Was Wrong<br>
<span class="font-weight-normal">BY</span>
</a><a class="autorname">DENISSE CARDES</a>
</div>
</div>
<hr>
<div class="d-flex align-items-center">
<img src="assets/images/column3-img4.png" alt="John Doe"
class="mr-2 mt-3 rounded-circle" style="width:60px;">
<div class="media-body">
<a href="#" class="color-red">Warren as a Running Mate Would Make Biden
Unstoppable in the Midwest<br>
<span class="font-weight-normal">BY</span>
</a><a class="autorname">SANTIAGO MAQUIAVELO</a>
</div>
</div>
<hr>
<div class="d-flex align-items-center">
<img src="assets/images/column3-img5.png" alt="John Doe"
class="mr-2 mt-3 rounded-circle" style="width:60px;">
<div class="media-body">
<a href="#" class="color-red">Life at the Pandemic Epicenter and Its Lessons for
U.S. Health Care <br>
<span class="font-weight-normal">BY</span>
</a><a class="autorname">JORGE D'AYALA</a>
</div>
</div>
<hr>
<div class="d-flex align-items-center">
<img src="assets/images/column3-img6.png" alt="John Doe"
class="mr-2 mt-3 rounded-circle" style="width:60px;">
<div class="media-body">
<a href="#" class="color-red">Coronavirus Could Be Starting Point to Build a
More Resilient Economy <br>
<span class="font-weight-normal">BY</span>
</a><a class="autorname">WIN & CHUNG</a>
</div>
</div>
<hr>
<div class="d-flex align-items-center">
<img src="assets/images/column3-img7.png" alt="John Doe"
class="mr-2 mt-3 rounded-circle" style="width:60px;">
<div class="media-body">
<a href="#" class="color-red">Trump Can Call Me a 'Rogue Secretary of State.'
But I Won't Let Lies Slide <br>
<span class="font-weight-normal">BY</span>
</a><a class="autorname">ALADINO PANIVINO</a>
</div>
</div>
<hr>
<div class="d-flex align-items-center">
<img src="assets/images/column3-img8.png" alt="John Doe"
class="mr-2 mt-3 rounded-circle" style="width:60px;">
<div class="media-body">
<a href="#" class="color-red">Trump's China Hawks Should Prioritize Helping
America, Not Hurting Beijing<br>
<span class="font-weight-normal">BY</span>
</a><a class="autorname">JESSICA FARIAS</a>
</div>
</div>
</div>
<div class="d-none d-md-block d-lg-block">
<div class="input-group d-flex flex-column subscribe-container mt-5 p-4">
<div class="d-flex flex-row w-100">
<span class="icon-n"></span>
<label class="font-weight-bold" for="email">START YOUR DAY WITH OUR TOP 5
ARTICLES</label>
</div>
<input class="w-100 mb-3 mt-3 form-control" type="text"
placeholder="Email address" id="email">
<button class="btn btn-danger" type="submit">FREE SIGN UP</button>
</div>
</div>
</div>
</section>
</div>
</div>
<!-- MORE STORIES DISPLAY ONLY SMALL DEVICES-->
<div class="p-2">
<div class="row d-block d-sm-block d-md-none d-xl-none m-3">
<section class="more-stories mt-4">
<h2 class="gray font-weight-bold ">MORE STORIES </h2>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594659/house-votes-ppp-reform-bill.jpg?w=95&h=95&f=94e73fef2639ea1112b0410f96e77a76"
alt="House Passes Small">
<div>
<h3><a href="#" class="underline-red">House Passes Small Businesses Bill Tripling Window to
Use Pandemic Loans</a></h3>
<p>The bill made a number of amendments to the popular Paycheck Protection Program.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594611/mark-zuckerberg.jpg?w=95&h=95&f=538c09ac369c9e6b968a7b241492e250"
alt="Zuckerberg Says something about politicians">
<div>
<h3><a href="#" class="underline-red">Zuckerberg Says Politicians Can't Say Whatever They
Want on Facebook</a></h3>
<p>Facebook CEO Mark Zuckerberg says Facebook will take down content, even posts by
politicians, if it crosses the social network platform's lines.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row p-1">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594676/nancy-pelosi.jpg?w=95&h=95&f=5088cafb49144c0933bf7ce8cad0ec8d"
alt="Pelosi Says Zuckerberg 'Panders to White House'">
<div>
<h3><a href="#" class="underline-red">Pelosi Says Zuckerberg 'Panders to White House'</a></h3>
<p>The House Speaker commented on Facebook CEO Mark Zuckerberg's recent criticisms of
Twitter amid the social platform's conflict with President Donald Trump.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594542/hong-kong-protest.jpg?w=95&h=95&f=d5557d5ed45b9fa15d32428958e9fa9b"
alt="Chinese State Media Outlet">
<div>
<h3><a href="#" class="underline-red">Chinese State Media Outlet Calls Pompeo an 'Arrogant,
Hysterical' Hypocrite</a></h3>
<p>"U.S. politicians such as Pompeo arrogantly believe that Hong Kong's destiny is in
their hands," a Global Times editorial said.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594613/trump-obama-stocks.jpg?w=95&h=95&l=50&t=51&f=186cf14912c0a9264e9b441a2653893f"
alt="Trump's Stock Market Gains Once Again Surpass Those of Obama">
<div>
<h3><a href="#" class="underline-red">Trump's Stock Market Gains Once Again Surpass Those of
Obama</a></h3>
<p>While Trump and his supporters have pointed to the stock market's rebound as a marker
of economic success, tens of millions of Americans remain unemployed as the
unemployment rate has surged into the double digits from a low of 3.5 percent in
February.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row p-1">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594672/kayleigh-mcenany-twitter-fact-check-trump-china.jpg?w=95&h=95&l=39&t=24&f=1d0556e6b278a526f4a1f9895ed92761"
alt="Press Sec Hits Twitter for Singling Out Trump">
<div>
<h3><a href="#" class="underline-red">Press Sec Hits Twitter for Singling Out Trump, Not
Chinese Propaganda</a></h3>
<p>White House Press Secretary Kayleigh McEnany pushed back against Twitter CEO Jack
Dorsey's request that people "leave employees" out of the fact-checking debate,
saying the White House would continue to question the people on the team.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594604/biden-poll-number-decline.jpg?w=95&h=95&l=38&t=40&f=3d023cdc4213a85f9d5150b6e738e098"
alt="Joe Biden's Lead Over Donald Trump Falls">
<div>
<h3><a href="#" class="underline-red">Joe Biden's Lead Over Donald Trump Falls, Poll Data
Reveals</a></h3>
<p>The new survey found that the former vice president's poll lead had fallen by three
percentage points over the last week.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594480/child.jpg?w=95&h=95&f=60527a6f4b158749e35322900accd450"
alt="Coronavirus Pandemic image">
<div>
<h3><a href="#" class="underline-red">Coronavirus Pandemic Could Push 86 Million More Kids
into Household Poverty</a></h3>
<p>"This report should be a wake-up call for the world," said Save the Children
International CEO Inger Ashing.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594547/people-walk-past-huawei-store.jpg?w=95&h=95&f=62496e2091c30dbab89bc8dee456c1e0"
alt="Banning Huawei">
<div>
<h3><a href="#" class="underline-red">Banning Huawei From U.K. 5G Infrastructure Might Be
'Impossible'</a></h3>
<p>Prime Minister Boris Johnson was clear he wanted the Chinese company to provide 5G
infrastructure—now he's not so sure.</p>
</div>
</article>
<hr>
<article class="d-flex flex-row">
<img class="mr-3"
src="https://d.newsweek.com/en/full/1594564/hangzhou.jpg?w=95&h=95&f=150422facae7e4b6a832ca020592d7fa"
alt="Contact-Tracing Apps">
<div>
<h3><a href="#" class="underline-red">Contact-Tracing Apps Could Become Permanent Once the
Pandemic Is Over</a></h3>
<p>Privacy advocates are concerned there could be no definite end to digital tracing
introduced to stem coronavirus outbreaks.</p>
</div>
</article>
</section>
</div>
</div>
<!-- HEROES PF THE PANDEMIC DISPLAY ONLY SMALL DEVICES-->
<div class="row d-block d-sm-block d-md-none d-xl-none m-3 ">
<section class="sizelink-16 image-size decoration-none">
<h2 class="gray font-weight-bold">HEROES OF THE PANDEMIC</h2>
<div class="d-flex flex-row row">
<article class="d-flex flex-column col-12">
<img src="assets/images/column2-img2.jpg" alt="The Doctors and Nurses Crossing the Border">
<h3 class="mt-3 mb-4"><a href="#" class="w-100 gray">The Doctors and Nurses Crossing the Border
Daily to Help Asylum Seekers</a></h3>
</article>
<article class="d-flex flex-column col-12">
<img src="assets/images/column2-img3.jpg" alt="The Charity Helping Vulnerable">
<h3 class="mt-3 mb-4"><a href="#" class="m-1 w-100 gray">The Charity Helping Vulnerable Holocaust
Survivors During the Pandemic</a></h3>
</article>
<article class="d-flex flex-column col-12">
<img src="assets/images/column2-img4.jpg" alt=">Women Launch Campaign">
<h3 class="mt-3 mb-4"><a href="#" class="m-1 w-100 gray">Women Launch Campaign Urging People to Donate
Their Stimulus Checks</a></h3>
</article>
</div>
</section>
<section class="sizelink-16 decoration-none" >
<h2 class="gray font-weight-bold mt-1">CULTURE & TRAVEL</h2>
<div class="row image-size">
<article class="d-flex flex-column col-12">
<img class="w-100" src="assets/images/column2-img5.jpg" alt="Summer image">
<h3 class="mt-3 mb-4"><a href="#" class="m-1 w-100 gray">RVs Could Be the Answer to Your Summer Travel Plans</a></h3>
</article>
<article class="d-flex flex-column col-12">
<img src="assets/images/column2-img6.jpg" alt="beacjes image">
<h3 class="mt-3 mb-4"><a class="m-1 w-100 gray" href="#">What Beaches Are Open Now? What to Know Before You Go</a></h3>
</article>
<article class="d-flex flex-column col-12">
<img src="assets/images/column2-img7.jpg" alt="How Coronavirus impact tourism">
<h3><a class="m-1 w-100 gray" href="#"> How Coronavirus—and Lack of Tourism—Impact East Africa's Gorillas</a></h3>
</article>
</div>
</section>
</div>
<!-- SUBSCRIBE ONLY ON SMALL DEVICES-->
<div class="row d-none d-sm-block d-md-none p-2">
<div class="input-group d-flex flex-column subscribe-container mt-5 p-4">
<div class="d-flex flex-row w-100">
<span class="icon-n"></span>
<label class="font-weight-bold" for="email1">START YOUR DAY WITH OUR TOP 5 ARTICLES</label>
</div>
<input class="w-100 mb-3 mt-3 form-control" type="text" placeholder="Email address" id="email1">
<button class="btn btn-danger" type="submit">FREE SIGN UP</button>
</div>
</div>
<!--IN THE MAGAZINE SECTION-->
<div class="row sizelink-18 m-1">
<div class="col-12">
<div class=" row d-flex d-row justify-content-center align-items-center">
<div class="icon-n">
</div>
<p class="font-weight-bold">IN THE MAGAZINE</p>
</div>
<hr>
</div>
<div class="col-12">
<div class="row image-size">
<div class="col-md-3 col-sm-12 mb-3">
<img class="w-100" src="assets/images/row2-img1.jpg" alt="happy man">
<div class="see-features text-center">
<a href="#">SEE ALL FEATURES</a>
</div>
</div>
<div class="col-md-3 col-sm-12 mb-3">
<img class="w-100"
src="https://d.newsweek.com/en/full/1590706/fea-china-banner.jpg?w=466&h=311&l=50&t=50&q=90&f=2e93d189a56ba33aed2c6970c91e7b29"
alt="coronaviruz image">
<div class="pb-2 pt-2">
<a class="p-1 bg-danger text-white" href="#">PERISCOPE</a>
<a href="#" class="text-danger"> NEWS</a>
</div>
<a href="#" class="underline-red">America Is in a New Cold War and This Time the Communists
Might Win</a>
</div>
<div class="col-md-3 col-sm-12 mb-3">
<img class="w-100"
src="https://d.newsweek.com/en/full/1591959/per-broadcast-01.jpg?w=466&h=311&l=51&t=60&q=90&f=34753e5f2f265b8023b99371608271ec"
alt="happy man">
<div class="pb-2 pt-2">
<a class="p-1 bg-danger text-white" href="#">PERISCOPE</a>
<a href="#" class="text-danger"> NEWS</a>
</div>
<a href="#" class="underline-red">Whether Trump Likes it or Not, Network News is Riding a
Pandemic Ratings
Boom</a>
</div>
<div class="col-md-3 col-sm-12 mb-3">
<img class="w-100 "
src="https://d.newsweek.com/en/full/1590308/per-bezonomics-e-palette.jpg?w=466&h=311&l=48&t=55&q=90&f=cab91399c3dd27dafc27183f6d7014e3"
alt="happy man">
<div class="pb-2 pt-2">
<a class="p-1 bg-danger text-white" href="#">PERISCOPE</a>
<a href="#" class="text-danger"> NEWS</a>
</div>
<a href="#" class="underline-red">How Amazon's Bet on Autonomous Vehicles Can Help Protect
Us from Viruses</a>
</div>
</div>
<div class="row image-size">
<div class="col-md-3 col-sm-12 mb-3">
<img class="w-100 "
src="https://d.newsweek.com/en/full/1589236/jair-bolsonaro-brazil-favelas-coronavirus-covid-19.jpg?w=466&h=311&q=90&f=676cf2f6fe4d4bdf6acf46d6d39d8e78"
alt="happy man">
<div class="pb-2 pt-2">
<a class="p-1 bg-danger text-white" href="#">DOWNTIME</a>
<a href="#" class="text-danger"> NEWS</a>
</div>
<a href="#" class="underline-red">As Brazil's Bolsonaro Enjoys BBQ Despite COVID-19, the
Poor Face Starvation</a>
</div>
<div class="col-md-3 col-sm-12 mb-3">
<img class="w-100"
src="https://d.newsweek.com/en/full/1591374/cul-books-banner.jpg?w=466&h=311&l=52&t=57&q=90&f=df553f8697afea8b2ca82570783e966e"
alt="happy man">
<div class="pb-2 pt-2">
<a class="p-1 bg-danger text-white" href="#">DOWNTIME</a>
<a href="#" class="text-danger"> NEWS</a>
</div>
<a href="#" class="underline-red">The 20 Must-Read Fiction and Nonfiction Books of the
Summer</a>
</div>
<div class="col-md-3 col-sm-12 mb-3">
<img class="w-100 "
src="https://d.newsweek.com/en/full/1591269/cul-uncharted-frozentreats-banner.jpg?w=466&h=311&l=48&t=49&q=90&f=10eca51c85d53a52b22ebeb83466472f"
alt="happy man">
<div class="pb-2 pt-2">
<a class="p-1 bg-danger text-white" href="#">DOWNTIME</a>
<a href="#" class="text-danger"> NEWS</a>
</div>
<a href="#" class="underline-red">World's Finest Frozen Treats</a>
</div>
<div class="col-md-3 col-sm-12 mb-3">
<img class="w-100 "
src="https://d.newsweek.com/en/full/1591292/unmasked-man.jpg?w=480&h=320&l=52&t=44&q=90&f=eeb00f4603eb0ece0d1bd704dc52c9ad"
alt="happy man">
<div class="pb-2 pt-2">
<a class="p-1 bg-danger text-white" href="#">IN FOCUS</a>
<a href="#" class="text-danger"> NEWS</a>
</div>
<a href="#" class="underline-red">UNMASKED MAN</a>
</div>
</div>
</div>
</div>
<!--EDITOR'S PICK SECTION-->
<div class="row sizelink-24 sizetext-15 m-1">
<div class="col-12">
<div class=" row d-flex d-row justify-content-center align-items-center">
<div class="icon-n">
</div>
<p class="font-weight-bold">EDITOR'S PICK</p>
</div>
<hr>
</div>
<div class="col-12 ">
<div>
<div class="row image-size">
<div class="col-lg-3 col-md-6 mb-3">
<img class="w-100" src="https://d.newsweek.com/en/full/1595808/mark-zuckerberg.jpg?w=397&h=295&f=ba1f34c3b4d702ad1a33a45ad2d0ff07" alt="Hydroxychloroquine image">
<div class=" mt-2">
<a class="underline-red" href="#">The Rise and Fall of Hydroxychloroquine</a>
<p class="mt-2">France has banned doctors from prescribing hydroxychloroquine to COVID-19 patients
over fears about its safety, after the World Health Organization expressed similar
concerns.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594110/spacex-falcon-9-rocket.jpg?w=397&h=295&f=cbf6061e4a3c238e99691a764e1a4a41"
alt="Nasa image">
<a class="underline-red" href="#">How and When to Watch The Historic SpaceX and NASA Launch Live Onlinee</a>
<p class="mt-2">"This launch represents the realization of a decades' long dream to migrate part of
human space exploration to private companies," former NASA astronaut Mike Massimino
told Newsweek.</p>
</div>
<div class="col-lg-3 col-md-6 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594123/oscar-parodi-norfolk-norwich-university-hospital.jpg?w=397&h=295&f=13993a44b52c421e2108f625f0f68b77"
alt="Cannabis image">
<a class="underline-red" href="#">Baby Given Cannabis-derived Drug to Prevent Seizures in World First</a>
<p class="mt-2">Oscar Parodi is taking part in a trial where babies are given a 30th of the usual
dose of the drug.</p>
</div>
<div class="col-lg-3 col-md-6 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594100/boston-bruins.jpg?w=397&h=295&f=03bf5601bb00aa92bbfeec4cfbb9b8ac"
alt="Stanley Cup image">
<a class="underline-red" href="#">New Stanley Cup Playoffs Format, Expanded NHL Postseason Explained</a>
<p class="mt-2">The NHL regular season was suspended on March 12 and is now officially over, with an
expanded postseason beginning this summer.</p>
</div>
</div>
<div class="row image-size">
<div class="col-lg-3 col-md-6 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594090/hand-man-fingers-stock-getty.jpg?w=397&h=295&f=7c1aa130abe774f396c1779fb85206e0"
alt="Ring Finger Linked image">
<a class="underline-red" href="#">Length of Ring Finger Linked to Men's Risk of Dying from Coronavirus</a>
<p class="mt-2">Scientists studied the ratio of index to ring finger in tens of thousands of men and
women across 41 countries.</p>
</div>
<div class="col-lg-3 col-md-6 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594149/ring-galaxy.jpg?w=397&h=295&f=057ff412751c681d1f27a2a8fec2b7b5"
alt="Ring of Fire Galaxy image">
<a class="underline-red" href="#">'Ring of Fire' Galaxy from 11 Billion Years Ago Discovered</a>
<p class="mt-2">R5519 is thought to have formed through a collision with a "victim" galaxy about
three billion years after the Big Bang.</p>
</div>
<div class="col-lg-3 col-md-6 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594057/george-floyd-protests.jpg?w=397&h=295&f=62db0ecf6e1da163fae17ca1559b2d4d"
alt="George Floyd Video">
<a class="underline-red" href="#">New George Floyd Video Shows Him Compliant and Handcuffed Early</a>
<p class="mt-2">While the video only shows one phase of the arrest process and has no audio, it shows
George Floyd handcuffed and appearing to follow the officers' instructions.</p>
</div>
<div class="col-lg-3 col-md-6 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1593938/mcconnell-stimulus.jpg?w=397&h=295&l=33&t=53&f=b87c6b9876f8171eaa239decaa724285"
alt="Kentucky Republican image">
<a class="underline-red" href="#">New Stimulus Could Come in 'Next Month or So,' McConnell Says</a>
<p class="mt-2">The Kentucky Republican has said in recent weeks that he is eyeing another stimulus
worth around $1 trillion, which is unlikely to include another round of individual
checks for Americans.</p>
</div>
</div>
</div>
<hr>
</div>
</div>
<!--US SECTION-->
<div class="row m-1">
<div class="col-12">
<h2 class="font-weight-bold text-danger">U.S.</h2>
<div class="row">
<div class="col-md-4 col-sm-12 sizelink-22 mb-3">
<img class="w-100 mb-2" src="assets/images/row4-img1.jpg" alt="cars">
<a href="#" class="underline-red">23 States Sue Trump Administration For Weakening Auto
Emission Regulations</a>
</div>
<div class="col-md-4 col-sm-12 sizelink-22 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594399/jb-pritzker.jpg?w=397&h=265&f=ab9c1c1952a5947e8ef5c237454fffe1"
alt="cars">
<a href="#" class="underline-red">Illinois Is Only State to Meet All Federal Criteria
for Reopening</a>
</div>
<div class="col-md-4 col-sm-12 compact-column sizelink-17 mb-3">
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1594383/steve-sisolak.jpg?w=95&h=95&f=77aed682d97811d15346eb40b779401b"
alt="Las Vegas Casinos">
<a href="#" class="color-red">Las Vegas Casinos Expected to Reopen in June After
Months-Long
Closure</a>
</div>
<hr>
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1593628/flag-half-mast-new-jersey.jpg?w=95&h=95&f=9fcbab14eedb22ebe73007371a6493f1"
alt="People Have Died of Coronavirus">
<a href="#" class="color-red">More Than 100,000 People Have Died of Coronavirus in
the United
States</a>
</div>
<hr>
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1594163/when-can-i-go-holiday.webp?w=95&h=95&f=7e2e2e451e18262a11c9047521b6998d"
alt="Lockdown Restrictions">
<a href="#" class="color-red">Lockdown Restrictions to Loosen This Week in
Washington, D.C.</a>
</div>
</div>
</div>
<hr>
</div>
</div>
<!--WORLD SECTION-->
<div class="row m-1">
<div class="col-12">
<h2 class="font-weight-bold text-danger">WORLD</h2>
<div class="row">
<div class="col-md-4 col-sm-12 sizelink-22 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594378/meng-wanzhou.jpg?w=397&h=265&f=b8c4023ccb90eaf9b709c53fe185ab5b"
alt="cars">
<a class="underline-red" href="#">What is Double Criminality? Huawei CFO Still Faces
Extradition to U.S.</a>
</div>
<div class="col-md-4 col-sm-12 sizelink-22 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594350/iran-venezuela-fuel-tanker-trade.jpg?w=397&h=265&f=470b9de9f82a8e56f5c1a0e0a4bbe33c"
alt="cars">
<a class="underline-red" href="#">Iran, Venezuela Praise Fuel Shipments Despite U.S.
'Aggression' on Trade</a>
</div>
<div class="col-md-4 col-sm-12 compact-column sizelink-17 mb-3">
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1594356/trump-china-hong-kong.jpg?w=397&h=265&l=59&t=34&f=d5880d0cbd4808d6c5ec1767c9fcbe1c"
alt="Trump picture">
<a href="#" class="color-red">Trump Considering Retaliation Against China's Proposed
Security Law</a>
</div>
<hr>
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1594187/president-brazil-jair-bolsonaro.jpg?w=95&h=95&f=6a05444e8688764460686c2fdff443c6"
alt="Brazil flag">
<a href="#" class="color-red">Brazil Government Aide Says COVID-19's Toll on Elderly
Will Reduce
Pensions</a>
</div>
<hr>
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1593748/boris-johnson-approval-ratings.jpg?w=95&h=95&f=5067fba1d8ca6565f6d92a6f8a443311"
alt="Boris Johnson">
<a href="#" class="color-red">Boris Johnson Refuses to Provide Evidence on Dominic
Cummings</a>
</div>
</div>
</div>
<hr>
</div>
</div>
<!--BUSINES SECTION-->
<div class="row m-1">
<div class="col-12">
<h2 class="font-weight-bold text-danger">BUSINES</h2>
<div class="row">
<div class="col-md-4 col-sm-12 sizelink-22 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1593924/trump-campaign-store-biden-black.jpg?w=397&h=265&f=ef57122e6aa0394ffa9f9d9130310fed"
alt="cars">
<a href="#" class="underline-red">Trump Store Rolls Out 'You Ain't Black' T-shirts
Referencing Biden Remark</a>
</div>
<div class="col-md-4 col-sm-12 sizelink-22 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1593641/trump-national-doral-miami.jpg?w=397&h=265&f=00823910e316342862c630ae0cf0e0ed"
alt="cars">
<a class="underline-red" href="#">Trump Organization Lays off 250 Resort Employees Due
to Pandemic</a>
</div>
<div class="col-md-4 col-sm-12 compact-column sizelink-17 mb-3">
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1558711/mike-tomlin-brian-flores.jpg?w=397&h=265&f=60dad34bb83adb3289b0f78d4c815cdb"
alt=" John Cornyn picture">
<a href="#" class="color-red">Did Obamacare Hater Sen. John Cornyn Really Tell
Texans to Sign Up For
the Affordable Care Act? | Opinion</a>
</div>
<hr>
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1593415/steve-mnuchin.jpg?w=95&h=95&f=8760c077f0e9546e81cdda30115baab5"
alt="publicity image">
<a href="#" class="color-red">Most Publicly Listed Companies Won't Return
Coronavirus Stimulus Aid</a>
</div>
<hr>
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1578448/new-england-patriots-bob-kraft.jpg?w=95&h=95&f=5010a269e0f806eebeda849e2882cb57"
alt="epublican and Democratic flag">
<a href="#" class="color-red">Major Republican and Democratic campaign organizations
are using shady
"new</a>
</div>
</div>
</div>
<hr>
</div>
</div>
<!--TECH & SCIENCE SECTION-->
<div class="row m-1">
<div class="col-12">
<h2 class="font-weight-bold text-danger">Tech & Science</h2>
<div class="row">
<div class="col-md-4 col-sm-12 sizelink-22 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594258/space.jpg?w=397&h=265&f=70c1e4c4886a41625adc90c9f46ac573"
alt="cars">
<a href="#" class="underline-red">Astronomers May Have Found the Universe's Missing
Matter</a>
</div>
<div class="col-md-4 col-sm-12 sizelink-22 mb-3">
<img class="w-100 mb-2"
src="https://d.newsweek.com/en/full/1594199/hbo-max-hulu.png?w=397&h=265&l=68&t=65&f=bdee43abb322787270b5cbad9b60e4b9"
alt="cars">
<a href="#" class="underline-red">How Hulu Subscribers With the HBO Add-On Can Watch HBO
Max for Free</a>
</div>
<div class="col-md-4 col-sm-12 compact-column sizelink-17 mb-3">
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1594218/spacex-falcon-9-rocket-crew-dragon.jpg?w=397&h=265&f=8e28a8513f83ea77e5b0a79e6ecdea06"
alt="Weather sun and rain">
<a href="#" class="color-red">Weather May Delay SpaceX Launch As Forecasters Say
Storms Possible</a>
</div>
<hr>
<div class="d-flex align-items-start">
<img src="https://d.newsweek.com/en/full/1594202/spacex.jpg?w=95&h=95&f=dc4736cdb3bc9e7b395a571a81277d76"
alt=" SpaceX's Falcon 9">