-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1127 lines (1119 loc) · 63.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-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Newsweek</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://kit-free.fontawesome.com/releases/latest/css/free.min.css" media="all">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/responsive.css">
</head>
<body class="container">
<header class="row border-bottom position-fixed header">
<div class="d-flex col-12 pt-md-2 pb-md-3 pt-xl-5 pb-xl-3 bg-red justify-content-around align-items-center flex-nowrap sticky-top">
<div class="col-4 d-none d-lg-flex flex-column">
<p><i class="fas fa-cloud-sun-rain fa-lg"></i> 25° Luuka ></p>
<p> Thu, Mar 19, 2020</p>
</div>
<div class="col-sm-6 col-md-4 col-lg-4 color">
<svg 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" style="enable-background: new 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>
</div>
<div class="col-sm-6 pip col-md-8 col-lg-4 d-flex justify-content-end align-items-center pb-lg-1">
<button class="btn pr-lg-1 sign-in">SIGNIN</button>
<button class="btn btn-primary rounded-0 border subscribe-btn"><span class="pl-0">SUBSCRIBE</span></button>
<div class="d-md-block d-xl-none">
<i class="material-icons">menu</i>
</div>
</div>
</div>
<div class="col-lg-10 disappear d-none d-xl-block">
<ul class="col-lg-12 mr-2 d-flex justify-content-between list-bk-color mt-1">
<li class="nav-item">
<a href="#" class="nav-link border-right">U.S.</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link border-right">World</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link border-right">Business</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link border-right">Tech & Science</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link border-right">Culture</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link border-right">Newsgeek</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link border-right">Sports</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link border-right">Health</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link border-right">The Debate</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link border-right">Vantage</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Weather</a>
</li>
</ul>
</div>
<input type="text" placeholder="Search" class="col-lg-1 search-input mt-lg-2 d-none d-xl-block">
<div class="col-lg- trapezium d-none d-xl-block"></div>
</header>
<main class="container-fluid">
<div class="row mt-xl-4">
<div class="d-flex col-sm-12 col-lg-8 feat order-2 order-md-0">
<section id="feature-stories" class="col-sm-12 col-md-5 col-lg-4 min-content-height sticky-top p-0">
<h2>FEATURED STORIES</h2>
<div>
<div>
<img
src="https://d.newsweek.com/en/full/1575707/coronavirus.jpg?w=397&h=265&q=90&f=9d411f587ddecef5bee8f0f99ca54eaf"
alt="" class="w-100">
<p class="col-5 position-relative d-block topic p-2 text-center">WORLD</p>
</div>
<h3 class="h3-feature-story">COVID-19 Pandemic Could Cost U.S. $7 Trillion, Professor Estimates</h3>
<p class="p-feature-story">"Without vigorous steps, the CDC estimates the COVID-19 will infect 70 to 150
million Americans,"
Michael
Hicks tells Newsweek. "This would have enormous economic costs."</p>
</div>
<div>
<div>
<img
src="https://d.newsweek.com/en/full/1575699/ohio-coronavirus.jpg?w=397&h=265&q=90&f=899960ae2e480fbe4b567b095d603d01"
alt="" class="w-100">
<p class="col-4 position-relative d-block topic p-2 text-center">U.S</p>
</div>
<h3 class="h3-feature-story">Ohio and Louisiana Issue Statewide Stay-at-Home Orders Amid Coronavirus</h3>
<p class="p-feature-story">Ohio's order mandating all residents stay at home will be implemented Monday
evening at 11.59 p.m.
local
time, and is scheduled to end on April 6.</p>
</div>
<div>
<div>
<img
src="https://d.newsweek.com/en/full/1575668/rand-paul.jpg?w=397&h=265&q=90&f=6f09981a0ba49e99cd98b49fdd5ff2c8"
alt="" class="w-100">
<p class="col-5 position-relative d-block topic p-2 text-center">WORLD</p>
</div>
<h3 class="h3-feature-story">Rand Paul Tests Positive for Coronavirus</h3>
<p class="p-feature-story">He expects to be back in the Senate after his quarantine period ends," according
to the Kentucky
senator's
Twitter account.</p>
</div>
</section>
<section id="top-stories" class="d-none d-md-block d-lg-block col-md-7 col-lg-8">
<h2>top Story</h2>
<div>
<div>
<img
src="https://d.newsweek.com/en/full/1575696/donald-trump.jpg?w=591&h=364&f=c4a7be2fe03204b5fb5327dde00d07c9"
alt="" class="w-100">
<p class="col-2 position-relative d-block topic p-2 text-center">News</p>
</div>
<h3>Trump Announces Activation of the National Guard in Worst-Hit COVID-19 States</h3>
<p>The federal government has deployed hundreds of tons of supplies from our national stockpile to
locations
with the greatest need in order to assist in those areas," the president said Sunday.</p>
</div>
<section id="culture-travel" class="row">
<h2 class="col-12">CULTURE & TRAVEL</h2>
<div class="col-md-4 col-lg-4">
<img
src="https://d.newsweek.com/en/full/1574874/spanish-steps-italy.jpg?w=397&h=397&f=ad0f7bdfd3dc9fffc99ae723d926ac32"
alt="" class="w-100">
<h4>Social Distancing Around the World in Photos</h4>
<p>From Rome's desolate Spanish Steps to New York's deserted Times Square, take a look at some of the
world's
busiest landmarks that are all now but eerily empty.</p>
</div>
<div class="col-md-4 col-lg-4">
<img
src="https://d.newsweek.com/en/full/1575422/breakfast-lunch-dinner.webp?w=397&h=397&f=a6dbd65ad3ba41063a6b46b1f92b7a60"
alt="" class="w-100">
<h4>Wanderlust Stricken? The 10 Best Travel TV Shows to Watch Now</h4>
<p>Travelers can still explore the world while binge-watching these travel TV shows in home isolation.
Thanks
to streaming services, we can virtually send ourselves to nearly any and every part of the planet in
just a
few clicks.</p>
</div>
<div class="col-md-4 col-lg-4">
<img
src="https://d.newsweek.com/en/full/1574573/taj-mahal.webp?w=397&h=397&f=6059c9040fd468ee41988930ca76f210"
alt="" class="w-100">
<h4>You Can Still See the World With These Virtual Tours</h4>
<p>What to do with the free time available when trips to the movies, a museum or the theater are out of
the
question? Here is a list of museums and other popular tourist attractions that have entire collections
or
performances available online.</p>
</div>
</section>
<section id="more-stories" class="row">
<h2 class="col-lg-12">more stories</h2>
<div class="col-lg-12 d-flex list-item border-top">
<img
src="https://d.newsweek.com/en/full/1575712/usns-mercy.jpg?w=95&h=95&f=9a1d7c17368b531a164e9b8d04f845d8"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-md-8 col-lg-9">
<h5>Navy Hospital Ship USNS Mercy Deployed to L.A. to Help COVID-19 Patients</h5>
<p>The vessel, which has been docked in San Diego, will now make its way up the West Coast to provide
1,000
beds.</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item border-top">
<img
src="https://d.newsweek.com/en/full/1575710/tokyo-2020-coronavirus.webp?w=95&h=95&f=6824cbb15f744728fc0a88501d951e90"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-lg-8">
<h5>Japan's PM Says 'We May Have No Option' but to Consider Postponing Olympics</h5>
<p>Tokyo Olympics organizers and the IOC are under mounting pressure to postpone.</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item border-top">
<img
src="https://d.newsweek.com/en/full/1575644/covid-19-new-york-city.webp?w=95&h=95&f=070745ab8ef2208b3f6b76bbe55abc8b"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-lg-9">
<h5>U.S. Has Fourth-Highest Number Of COVID-19 Cases Worldwide</h5>
<p>The country has reported more than 26,700 confirmed cases of the new coronavirus</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item border-top">
<img
src="https://d.newsweek.com/en/full/1575678/angela-merkel.webp?w=95&h=95&f=912a4e403b6a9a348a4f712010af9410"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-lg-9">
<h5>Angela Merkel Has Entered Quarantine Over Coronavirus Concern</h5>
<p>Even from domestic quarantine, the Chancellor will continue her official business," the German
leader's
spokesperson said</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md- border-top">
<img
src="https://d.newsweek.com/en/full/1575662/alexandria-ocasio-cortez.webp?w=95&h=95&f=3799e5dd3152d9b649d5824cc1c163b8"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-lg-9">
<h5>AOC: Trump Is 'Going to Cost Lives' by Not Using Defense Production Act</h5>
<p>We cannot wait until people start really dying in large</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mb-md-4 border-top">
<img
src="https://d.newsweek.com/en/full/1575656/steve-mnuchin-coronavirus-economic-stimulus.webp?w=95&h=95&f=06471a18c890c408f2b243fb7269d9fa"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-lg-9">
<h5>Who Will Receive Coronavirus Economic Relief Benefits? Treasury Sec Details</h5>
<p>Steve Mnuchin laid out how Americans are likely</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-3 mb-md-5 mb-lg-2 pt-md-3 border-top">
<img
src="https://d.newsweek.com/en/full/1574965/walter-ogrod.webp?w=95&h=95&f=ff59f72938b083fa799a88d7736efe8d"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-lg-9">
<h5>Pennsylvania Court Orders Death Row Inmate Get Coronavirus Test</h5>
<p>Walter Ogrod's lawyers had filed an emergency motion after the 55-year-old developed a high fever</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-5 mt-lg-3 border-top">
<img
src="https://d.newsweek.com/en/full/1575677/pritzker.webp?w=95&h=95&f=d92cbd3981d7a34644bcf9c6efcb60b0"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-lg-9">
<h5>Illinois Governor Pritzker Tells Trump to 'Get Off Twitter & Do Your Job'</h5>
<p>"You wasted precious months when you could've taken action to protect Americans & Illinoisans,"
Pritzker
said</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-4 border-top">
<img
src="https://d.newsweek.com/en/full/1575559/hand-sanitizer.webp?w=95&h=95&f=af5e9935bbff7640af192a9ea3335c17"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-lg-9">
<h5>Global Coronavirus Death Toll Now Exceeds 11,500</h5>
<p>Hospitals struggle to cope in Italy, bars and restaurants in the U.K. have been closed, and the
European
Union allows member states to spend as much as they need to combat the virus.</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-5 mb-md-4 border-top">
<img
src="https://d.newsweek.com/en/full/1575683/cameron-van-der-burgh.webp?w=95&h=95&f=f32400a2feb313f893bde85415bf19ee"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-lg-9">
<h5>Olympic Champion Swimmer Diagnosed With Coronavirus Calls It 'Worse Virus'</h5>
<p>Cameron van der Burgh, the Olympic gold medalist in the 100-meter breaststroke</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-5 border-top">
<img
src="https://d.newsweek.com/en/full/1575653/mark-desaulnier.webp?w=95&h=95&f=a5f032524f180168dbb027d89c86a6cd"
alt="" class="w-100 h-100 col-md-4 col-lg-3">
<div class="col-lg-9">
<h5>Congressman Mark DeSaulnier in Critical Condition With Pneumonia</h5>
<p>The doctors are doing everything they can to care for the Congressman," the representative's office
said
in a statement.</p>
</div>
</div>
</section>
</section>
</div>
<div class="col-sm-12 d-md-none mt-2 p-0">
<section id="top-story-mobile-view" class="col-12 mt-2">
<h2>top Story</h2>
<div>
<img
src="https://d.newsweek.com/en/full/1575696/donald-trump.jpg?w=591&h=364&f=c4a7be2fe03204b5fb5327dde00d07c9"
alt="" class="w-100">
<h3 class="h3-top-story">Trump Announces Activation of the National Guard in Worst-Hit COVID-19 States
</h3>
<p class="p-top-story">The federal government has deployed hundreds of tons of supplies from our national
stockpile to
locations
with the greatest need in order to assist in those areas," the president said Sunday.</p>
</div>
</section>
</div>
<div class="col-lg-4 mt-md-5 mt-lg-1 order-3 ">
<section id="opinion" class="col-lg-12 min-content-height sticky-top opinion p-0">
<h2>opinion</h2>
<div class="col-lg-12 d-flex justify-content-start option-element border-bottom p-0">
<div class="col-lg-3 head-shot img1"></div>
<div class="col-lg-9 p-0">
<h5>In Israel, the Pandemic Is a Slow-Motion Car Crash</h5>
<p class="p-3 p-lg-0">BY MARC SCHULMAN</p>
</div>
</div>
<div class="col-lg-12 d-flex justify-content-start option-element pt-2 border-bottom p-0">
<div class="col-lg-3 head-shot img2"></div>
<div class="col-lg-9 p-0">
<h5>Coronavirus Is Corporations' Chance to Prove Their Worth to Communities</h5>
<p class="p-3 p-lg-0">BY ANDREW FORMAN</p>
</div>
</div>
<div class="col-lg-12 d-flex justify-content-start option-element pt-2 border-bottom p-0">
<div class="col-lg-3 head-shot img3"></div>
<div class="col-lg-9 p-0">
<h5>Bernie's Campaign Was All Policy. His Values Were a Better Rallying Cry</h5>
<p class="p-3 p-lg-0">BY RICHARD E</p>
</div>
</div>
<div class="col-lg-12 d-flex justify-content-start option-element pt-2 border-bottom p-0">
<div class="col-lg-3 head-shot img4"></div>
<div class="col-lg-9 p-0">
<h5>The Ethics of the Coronavirus Crisis Are Muddier Than You Think</h5>
<p class="p-3 p-lg-0">BY CHARLIE KIRK</p>
</div>
</div>
<section id="debate" class="mt-5">
<h2>the debate</h2>
<div class="col-lg-12 debate d-flex align-items-center justify-content-start flex-wrap pl-lg-0">
<div class="d-flex ">
<img
src="https://d.newsweek.com/en/full/1575781/joe-biden.webp?w=397&h=265&f=143b9f300ab9db80889ea2d79ae4e81b"
alt="" class="w-25 pl-lg-0 mr-3">
<p class="w-75 pl-lg-4 mt-2">Biden's Runninan Entire State, Not Just a Constituency
</p>
</div>
<div class="w-100 double-line mt-3 d-flex justify-content-between">
<h6>by peter roff</h6>
<img
src="https://d.newsweek.com/en/full/1528785/roff-new.webp?w=150&h=150&f=0992b2cf5c54139a019181659687bf9a"
id="smaller" alt="">
</div>
</div>
<div
class="col-lg-12 debate blue-color d-flex align-items-center justify-content-start flex-wrap pl-lg-0 mt-lg-5">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1573022/joe-biden-bernie-sanders.webp?w=397&h=265&f=f90d6b535ea0fcac3ae722c195fdf784"
alt="" class="w-25 pl-lg-0 mr-3">
<p class="w-75 pl-lg-4 mt-2">Biden's Running Mate Needs to Win Him an Entire State, Not Just a
Constituency
</p>
</div>
<div class="w-100 double-line mt-lg-3 d-flex justify-content-between">
<h6>BY AIMEE ALLISONf</h6>
<img
src="https://d.newsweek.com/en/full/1565352/aimee-allison.webp?w=150&h=150&f=ae41d00ed12c8a0c6447a34ea3da29d0"
id="smallerr" alt="">
</div>
</div>
<section id="more-stories-mobile-view" class="row d-md-none">
<h2 class="col-lg-12">more stories</h2>
<div class="col-lg-12 d-flex list-item mb-md-4 flex-column mb-5">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1575712/usns-mercy.jpg?w=95&h=95&f=9a1d7c17368b531a164e9b8d04f845d8"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>Navy Hospital Ship USNS Mercy Deployed to L.A. to Help COVID-19 Patients</h5>
</div>
<div class="col-md-8 col-lg-9">
<p>The vessel, which has been docked in San Diego, will now make its way up the West Coast to
provide
1,000
beds.</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item flex-column mb-5">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1575710/tokyo-2020-coronavirus.webp?w=95&h=95&f=6824cbb15f744728fc0a88501d951e90"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>Japan's PM Says 'We May Have No Option' but to Consider Postponing Olympics</h5>
</div>
<div class="col-lg-8">
<p>Tokyo Olympics organizers and the IOC are under mounting pressure to postpone the Games due the
coronavirus outbreak.</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-5 flex-column mb-5 mt-4">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1575644/covid-19-new-york-city.webp?w=95&h=95&f=070745ab8ef2208b3f6b76bbe55abc8b"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>U.S. Has Fourth-Highest Number Of COVID-19 Cases Worldwide</h5>
</div>
<div class="col-lg-9">
<p>The country has reported more than 26,700 confirmed cases of the new coronavirus</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item flex-column mb-5">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1575678/angela-merkel.webp?w=95&h=95&f=912a4e403b6a9a348a4f712010af9410"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>Angela Merkel Has Entered Quarantine Over Coronavirus Concern</h5>
</div>
<div class="col-lg-9">
<p>Even from domestic quarantine, the Chancellor will continue her official business," the German
leader's
spokesperson said</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-5 mb-md-5 flex-column mb-5 mt-4">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1575662/alexandria-ocasio-cortez.webp?w=95&h=95&f=3799e5dd3152d9b649d5824cc1c163b8"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>AOC: Trump Is 'Going to Cost Lives' by Not Using Defense Production Act</h5>
</div>
<div class="col-lg-9">
<p>We cannot wait until people start really dying in large numbers," the progressive Democrat from
New
York
warned.</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mb-md-4 flex-column mb-5">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1575656/steve-mnuchin-coronavirus-economic-stimulus.webp?w=95&h=95&f=06471a18c890c408f2b243fb7269d9fa"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>Who Will Receive Coronavirus Economic Relief Benefits? Treasury Sec Details</h5>
</div>
<div class="col-lg-9">
<p>Steve Mnuchin laid out how Americans are likely set to receive more than $2 trillion in economic
stimulus
funds that the federal government is dispersing as a "bridge to get through" coronavirus
shutdowns.
</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-5 mb-md-5 pt-md-5 flex-column mb-5 mt-5 pt-4">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1574965/walter-ogrod.webp?w=95&h=95&f=ff59f72938b083fa799a88d7736efe8d"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>Pennsylvania Court Orders Death Row Inmate Get Coronavirus Test</h5>
</div>
<div class="col-lg-9">
<p>Walter Ogrod's lawyers had filed an emergency motion after the 55-year-old developed a high
fever,
cough
and had difficulties breathing, but wasn't tested for COVID-19.</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-5 flex-column mb-5 mt-5">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1575677/pritzker.webp?w=95&h=95&f=d92cbd3981d7a34644bcf9c6efcb60b0"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>Illinois Governor Pritzker Tells Trump to 'Get Off Twitter & Do Your Job'</h5>
</div>
<div class="col-lg-9">
<p>"You wasted precious months when you could've taken action to protect Americans & Illinoisans,"
Pritzker
said</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-4 flex-column mb-5">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1575559/hand-sanitizer.webp?w=95&h=95&f=af5e9935bbff7640af192a9ea3335c17"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>Global Coronavirus Death Toll Now Exceeds 11,500 in the year 2020 try jdhu</h5>
</div>
<div class="col-lg-9">
<p>Hospitals struggle to cope in Italy, bars and restaurants in the U.K. have been closed, and the
European
Union allows member states to spend as much as they need to combat the virus.</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-5 mb-md-4 flex-column mb-5 mt-5">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1575683/cameron-van-der-burgh.webp?w=95&h=95&f=f32400a2feb313f893bde85415bf19ee"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>Olympic Champion Swimmer Diagnosed With Coronavirus Calls It 'Worse Virus'</h5>
</div>
<div class="col-lg-9">
<p>Cameron van der Burgh, the Olympic gold medalist in the 100-meter breaststroke in 2012 and silver
medalist in 2016, talks about his physical struggles during his 14th day in battling coronavirus.
</p>
</div>
</div>
<div class="col-lg-12 d-flex list-item mt-md-5 flex-column mb-5 mt-5 pt-5 pb-5">
<div class="d-flex">
<img
src="https://d.newsweek.com/en/full/1575653/mark-desaulnier.webp?w=95&h=95&f=a5f032524f180168dbb027d89c86a6cd"
alt="" class="w-100 h-100 col-sm-2 col-md-4 col-lg-3">
<h5>Congressman Mark DeSaulnier in Critical Condition With Pneumonia</h5>
</div>
<div class="col-lg-9">
<p>The doctors are doing everything they can to care for the Congressman," the representative's
office
said
in a statement.</p>
</div>
</div>
</section>
<section id="culture-travel-mobile" class="row d-md-none mt-5 pt-4">
<h2 class="col-12">CULTURE & TRAVEL</h2>
<div class="col-md-4 col-lg-4">
<img
src="https://d.newsweek.com/en/full/1574874/spanish-steps-italy.jpg?w=397&h=397&f=ad0f7bdfd3dc9fffc99ae723d926ac32"
alt="" class="w-100">
<h3 class="h3-top-story mt-3">Social Distancing Around the World in Photos</h3>
<p>From Rome's desolate Spanish Steps to New York's deserted Times Square, take a look at some of the
world's
busiest landmarks that are all now but eerily empty.</p>
</div>
<div class="col-md-4 col-lg-4">
<img
src="https://d.newsweek.com/en/full/1575422/breakfast-lunch-dinner.webp?w=397&h=397&f=a6dbd65ad3ba41063a6b46b1f92b7a60"
alt="" class="w-100">
<h3 class="h3-top-story mt-3">Wanderlust Stricken? The 10 Best Travel TV Shows to Watch Now</h3>
<p>Travelers can still explore the world while binge-watching these travel TV shows in home isolation.
Thanks
to streaming services, we can virtually send ourselves to nearly any and every part of the planet in
just a
few clicks.</p>
</div>
<div class="col-md-4 col-lg-4">
<img
src="https://d.newsweek.com/en/full/1574573/taj-mahal.webp?w=397&h=397&f=6059c9040fd468ee41988930ca76f210"
alt="" class="w-100">
<h3 class="h3-top-story mt-3">You Can Still See the World With These Virtual Tours</h3>
<p>What to do with the free time available when trips to the movies, a museum or the theater are out
of
the
question? Here is a list of museums and other popular tourist attractions that have entire
collections
or
performances available online.</p>
</div>
</section>
<section id="latest-news">
<h2>Latest news</h2>
<div class="col-lg-12 d-flex list-item latest-news border-top mb-2 mb-md-0">
<img
src="https://d.newsweek.com/en/full/1576083/andres-manuel-lopez-obrador.webp?w=95&h=95&f=06f88959d55ee595b4228bd9e0e3a2e0"
alt="" class="w-100 col-md-3 col-lg-4">
<div class="col-lg-8">
<h5>Mexico's President Has No Interest in Bailing Out Big Companies and Banks</h5>
</div>
</div>
<div class="col-lg-12 d-flex list-item latest-news border-top mb-2">
<img
src="https://d.newsweek.com/en/full/1054683/rtxw977.webp?w=95&h=95&f=75361f019807cf6d100488e714bd94ed"
alt="" class="w-100 h-100 col-md-3 col-lg-4">
<div class="col-lg-8">
<h5>Iceland's Answer To 'Keeping Up With The Kardashians' Has 100% More Cats</h5>
</div>
</div>
<div class="col-lg-12 d-flex list-item latest-news border-top">
<img
src="https://d.newsweek.com/en/full/1576072/ohare-airport-coronavirus-travelers-airlines-tsa-emergency.webp?w=95&h=95&f=4e72bda0a3c251f1c462696343a6fd77"
alt="" class="w-100 h-100 col-md-3 col-lg-4">
<div class="col-lg-8">
<h5>Hundreds of Thousands of Americans Still Flying Every Day Despite COVID-19</h5>
</div>
</div>
<div class="col-lg-12 d-flex list-item latest-news border-top">
<img
src="https://d.newsweek.com/en/full/1576083/andres-manuel-lopez-obrador.webp?w=95&h=95&f=06f88959d55ee595b4228bd9e0e3a2e0"
alt="" class="w-100 h-100 col-md-3 col-lg-4">
<div class="col-lg-8">
<h5>Boeing, Airlines, Stoke Controversy With Bailout Pleas for at Least $110bn</h5>
</div>
</div>
<div class="col-lg-12 d-flex list-item latest-news border-top">
<img
src="https://d.newsweek.com/en/full/1576071/work-home.webp?w=95&h=95&f=0c3f1b49f71f6e8ed51f5572549308f3"
alt="" class="w-100 h-100 col-md-3 col-lg-4">
<div class="col-lg-8">
<h5>We Asked Twitter For Tips To Help Co-Working Partners Not Kill Each Other</h5>
</div>
</div>
</section>
<div class="col-8 sign-up-section p-3 offset-lg-1 mx-md-auto ml-lg-0">
<div class="d-flex align-items-center pb-3">
<div class="icon col-1"></div>
<span class="col-9">SIGN UP FOR OUR NEWSLETTER</span>
</div>
<button class="sign-up-btn p-2 rounded-0">SIGN UP ></button>
<p class="pt-3">Update your preferences »</p>
</div>
</section>
</section>
</div>
</div>
<div class="row mt-md-5 align-items-cente">
<div class="row col-lg-12 magazine justify-content-center mt-lg-5 border-bottom">
<div class="icon"></div>
<h2 class="mt-2 ml-2">in the magazine</h2>
</div>
<div class="col-md-3 col-lg-3 mt-4">
<img
src="https://d.newsweek.com/en/full/1579878/april-17-24-2020-cover.webp?w=290&h=387&q=90&f=68803bc5f58747c010919715f0fe09de"
alt="" class="w-100">
<div class="mt-2">
<h3 class="h3-magazine"><span class="cover p-1">COVER</span> BUSINESS</h3>
<p>The Coronavirus Will Change How We Work Forever</p>
</div>
</div>
<div class="col-md-3 col-lg-3 p-0 mt-5">
<img
src="https://d.newsweek.com/en/full/1575814/us-unemployment-jobs-economy-recession-coronavirus.webp?w=466&h=311&l=45&t=50&q=90&f=b0d045a877b5f16cdc9e995f12048831"
alt="" class="w-100 my-img">
<div class="mt-2">
<h3 class="h3-magazine"><span class="cover p-1">FEATURE</span> BUSINESS</h3>
<p>As Jobless Claims Surge, Here Are 7 Things To Do If You Lose Your Job</p>
</div>
</div>
<div class="col-md-3 col-lg-3 mt-5">
<img
src="https://d.newsweek.com/en/full/1573813/us-president-donald-trump.webp?w=466&h=311&q=90&f=26d109052f04be260abb7772c12b4686"
alt="" class="w-100 my-img">
<div class="mt-2">
<h3 class="h3-magazine"><span class="cover p-1">PERISCOPE</span>U.S.</h3>
<p>Exclusive: Inside the Military's Secret Plans If Coronavirus Cripples D.C.</p>
</div>
</div>
<div class="col-md-3 col-lg-3 p-0 mt-5">
<img
src="https://d.newsweek.com/en/full/1575814/us-unemployment-jobs-economy-recession-coronavirus.webp?w=466&h=311&l=45&t=50&q=90&f=b0d045a877b5f16cdc9e995f12048831"
alt="" class="w-100 my-img">
<div class="mt-2">
<h3 class="h3-magazine"><span class="cover p-1">PERISCOPE</span>U.S.</h3>
<p>As Jobless Claims Surge, Here Are 7 Things To Do If You Lose Your Job</p>
</div>
</div>
<div class="col-md-3 col-lg-3 p-0 mt-5 pt-lg-5">
<img
src="https://d.newsweek.com/en/full/1577311/remote-work-04.webp?w=466&h=311&q=90&f=f2840ff6913f357ddffea7af291afbb5"
alt="" class="w-100 my-img">
<div class="mt-2">
<h3 class="h3-magazine"><span class="cover p-1">COVER</span>BUSINESS</h3>
<p>The Coronavirus Will Change How We Work Forever</p>
</div>
</div>
<div class="col-md-3 col-lg-3 mt-5 pt-lg-5">
<img
src="https://d.newsweek.com/en/full/1577399/culture-hollywood-01.webp?w=466&h=311&l=57&t=43&q=90&f=b3efbf234050b943bd9509285112ae01"
alt="" class="w-100 my-img">
<div class="mt-2">
<h3 class="h3-magazine"><span class="cover p-1">PERISCOPE</span>CULTURE</h3>
<p>Hollywood Takes An Economic Beating from COVID-19</p>
</div>
</div>
<div class="col-md-3 col-lg-3 mt-5 pt-lg-5">
<img
src="https://d.newsweek.com/en/full/1577620/cul-uncharted-movies-banner.webp?w=466&h=311&q=90&f=efd6114a06932407b563170953ea7178"
alt="" class="w-100 my-img">
<div class="mt-2">
<h3 class="h3-magazine"><span class="cover p-1">DOWNTIME</span>CULTURE</h3>
<p>Take a Virtual Vacation With These Travel-Inspiring Films</p>
</div>
</div>
<div class="col-md-3 col-lg-3 mt-5 pt-lg-5">
<img
src="https://d.newsweek.com/en/full/1576924/cul-ps-reedus.webp?w=466&h=311&q=90&f=d7a14743a452631b3d9390e961866f63"
alt="" class="w-100 my-img">
<div class="mt-2">
<h3 class="h3-magazine"><span class="cover p-1">DOWNTIME</span>CULTURE</h3>
<p>Norman Reedus on 10 Years of 'The Walking Dead'</p>
</div>
</div>
</div>
<div class="row mt-lg-5 pt-lg-5">
<div class="row col-lg-12 magazine justify-content-center mt-lg-5 border-bottom">
<div class="icon"></div>
<h2 class="mt-2 ml-2">EDITOR'S PICK</h2>
</div>
<div class="col-md-6 col-lg-3 mt-md-3 mt-lg-5">
<img src="https://d.newsweek.com/en/full/1578379/gun-store.webp?w=397&h=265&f=d076e8e4c6c19c8671fa07a09630264a"
alt="" class="w-100 ">
<div class="mt-2">
<h3 class="h3-editors-pick">Gun Background Checks Hit All-Time High in March, FBI Reports</h3>
<p>"We're working seven days a week, 12 hours a day, just to keep up with the public at the door," one
gun-store owner told Newsweek.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 mt-md-3 mt-lg-5">
<img
src="https://d.newsweek.com/en/full/1575983/chloroquine-covid19-coronavirus-getty.webp?w=397&h=265&f=5eef0bcdbc26658dc84bb58cc0190ec4"
alt="" class="w-100">
<div class="mt-2">
<h3 class="h3-editors-pick">FDA Says There's a Shortage of Hydroxy and Chloroquine</h3>
<p>The drugs are being used experimentally to treat COVID-19 patients.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 mt-md-3 mt-lg-5">
<img
src="https://d.newsweek.com/en/full/1578467/us-border-closed.webp?w=397&h=265&f=920d54e6da01bea78a568c02697c3fed"
alt="" class="w-100">
<div class="mt-2">
<h3 class="h3-editors-pick">Nearly 40% Living in Countries With Closed Borders Amid COVID-19 Outbreak</h3>
<p>Meanwhile, more than 90% of people are living in countries with travel restrictions amid the COVID-19
outbreak.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 mt-md-3 mt-lg-5">
<img
src="https://d.newsweek.com/en/full/1578135/oil-donald-trump-coronavirus-russia-saudi-arabia.webp?w=397&h=265&f=68aa7ffaedd5088cfd3f1c196001f6ab"
alt="" class="w-100">
<div class="mt-2">
<h3 class="h3-editors-pick">Trump Says Russia and Saudi Arabia Are Discussing End to Oil Price War</h3>
<p>The dispute erupted last month and has driven down the price of oil in a market struggling under the
coronavirus pandemic.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 mt-md-3 mt-lg-5">
<img
src="https://d.newsweek.com/en/full/1577903/us-capitol-reflected-ambulance-coronavirus-pandemic.webp?w=397&h=265&f=d77135a7c53faeb5beeb953f3d22b194"
alt="" class="w-100">
<div class="mt-2">
<h3 class="h3-editors-pick">Five Ways to Get Health Insurance if You Lost Your Employer-Based Benefits</h3>
<p>A record-breaking 3.3 million people filed for unemployment benefits last week as businesses across the
country shut down because of the virus outbreak.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 mt-md-3 mt-lg-5">
<img
src="https://d.newsweek.com/en/full/1578262/jonnica-hill.webp?w=397&h=265&f=d853ee1ece98eaa84432ba29a8b75b21"
alt="" class="w-100">
<div class="mt-2">
<h3 class="h3-editors-pick">Erectile Dysfunction Linked to Higher Risk of Death, Cardiovascular Disease</h3>
<p>Men reporting erectile dysfunction faced a hazard ratio of 1.4 even when testosterone levels were
healthy,
the study authors state.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 mt-md-3 mt-lg-5">
<img
src="https://d.newsweek.com/en/full/1578450/queen-horseriding-windsor.webp?w=397&h=265&f=c708e0135c63971600c358e69fc352ca"
alt="" class="w-100">
<div class="mt-2">
<h3 class="h3-editors-pick">Queen Elizabeth II's Life On Lockdown Revealed By Former Press Secretary</h3>
<p>Queen Elizabeth II faces months without horse riding due to social distancing rules but will be
exercising,
her former press secretary says.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 mt-md-3 mt-lg-5">
<img
src="https://d.newsweek.com/en/full/1577880/stock-image-salt.webp?w=397&h=265&f=80a661282c34f0ffd7dd359acd1aff97"
alt="" class="w-100">
<div class="mt-2">
<h3 class="h3-editors-pick">Too Much Salt May Lower Your Ability to Fight Bacteria</h3>
<p>Tests in mice and humans suggest too much salt can dampen the body's response to infection. A healthy
diet,
sleep, exercise and reducing stress may help the immune system function.</p>
</div>
</div>
</div>
<div class="row">
<div class="row col-lg-12 magazine justify-content-center mt-lg-5 mb-lg-3 border-bottom">
<div class="icon icon"></div>
<h2 class="mt-2 ml-2">FEATURED SLIDESHOWS</h2>
</div>
<div class="col-md-4 mt-3 mt-md-3">
<img
src="https://d.newsweek.com/en/full/1560097/tozeur-tunisia.webp?w=397&h=265&f=69a77ef1bd7e21c060a7b7685b05a73d"
alt="" class="w-100">
<h3 class="h3-featured-slides mt-3">Relive the 'Star Wars' Saga at These Filming Locations</h3>
</div>
<div class="col-md-4 mt-5 mt-md-3">
<img
src="https://d.newsweek.com/en/full/1552749/eyjafjallajokull-iceland.webp?w=397&h=265&f=ea1ffc67b32c527ef435529cb5bd2dc6"
alt="" class="w-100">
<h3 class="h3-featured-slides mt-3">Active Volcanoes Around the World That Could Erupt at Any Moment</h3>
</div>
<div class="col-md-4 mt-5 mt-md-3">
<img
src="https://d.newsweek.com/en/full/1547486/lipschutz-living-room-hotel-chelsea.webp?w=397&h=265&f=fb4270bf5fbc2591cc43d24d0377621d"
alt="" class="w-100">
<h3 class="h3-featured-slides mt-3">Inside the Last Bohemian Apartments of the Storied Hotel Chelsea</h3>
</div>
</div>
<section id="us-sec" class="row border-top mt-5">
<h2 class="col-lg-12 h2-bottom">U.S.</h2>
<div class="col-md-4 mb-3">
<img
src="https://d.newsweek.com/en/full/1578814/dr-anthony-fauci.webp?w=397&h=265&f=8cc381988d091f6f6cf017ddde5d3b71"
alt="" class="w-100">
<h3 class="h3-us mt-2">Fauci wants a national coronavirus stay-at-home order, but Trump doesn't</h3>
</div>
<div class="col-md-4 mb-3">
<img
src="https://d.newsweek.com/en/full/1578808/chuck-schumer.webp?w=397&h=265&f=c54caa0d285ee59e379e009921fdd1e1"
alt="" class="w-100">
<h3 class="h3-us mt-2">Chuck Schumer Says He's 'Appalled' By Trump's Letter: 'Stop the Pettiness'</h3>
</div>
<div class="col-md-4">
<div class="d-flex mb-2 justify-content-around p-0">
<img
src="https://d.newsweek.com/en/full/1578805/tucker-carlson.webp?w=95&h=95&f=93672ffb2f17bc6dfb7405fc2bde8e6f"
alt="" class="image">
<p class="w-75 pl-lg-4 p-side-bar ml-2" id="side">Tucker Carlson: U.S. Shouldn't Let Medical Experts Make
COVID-19 Decisions
</p>
</div>
<div class="d-flex pt-2 pb-2 border-top border-bottom">
<img
src="https://d.newsweek.com/en/full/1578799/jared-kushner.webp?w=95&h=95&f=a0223559aa52ded69b52f247b1412ce8"
alt="" class="image">
<p class="w-75 pl-lg-4 p-side-bar ml-2" id="sidee">Jared Kushner Trends After Speaking at Coronavirus Task Force
Briefing</p>
</div>
<div class="d-flex mt-2 pb-5">
<img
src="https://d.newsweek.com/en/full/1575801/senate-democrats-block-coronavirus-stimulus-bill.webp?w=95&h=95&f=62be94c1b8c3ead702e061506261381f"
alt="" class="image">
<p class="w-75 pl-lg-4 p-side-bar ml-2" id="sideee">Trump Falsely Claims Schumer Has Been MIA in Coronavirus
Fight</p>
</div>
</div>
</section>
<section id="world" class="row border-top">
<h2 class="col-lg-12 h2-bottom">WORLD</h2>
<div class="col-md-4">
<img
src="https://d.newsweek.com/en/full/1578642/us-army-iraq-military-base-coronavirus.webp?w=397&h=265&f=8808129c69db842dc5167c7fd8fb1608"
alt="" class="w-100">
<h3 class="h3-us mt-2">U.S., Iran Prepare for Escalation in Iraq, COVID-19 May Make Conflict Worse</h3>
</div>
<div class="col-md-4 mt-4 mt-md-0">
<img
src="https://d.newsweek.com/en/full/1578753/coronavirus-us.webp?w=397&h=265&f=17455880bad9298ffd0fd323b184543f"
alt="" class="w-100">
<h3 class="h3-us mt-2">More Coronavirus Cases in U.S. Than Italy and Spain Combined'</h3>
</div>
<div class="col-md-4 mt-4 mt-md-0 ">
<div class="d-flex mb-2">
<img
src="https://d.newsweek.com/en/full/1578633/coronavirus-death-funeral-ceremony-italy-march-2020.webp?w=95&h=95&f=b1d31c8c7d427d913af0f756436a2f58"
alt="" class="image">
<p class="w-75 pl-lg-4 p-side-bar ml-2">Coronavirus Has Killed More Than 50,000 People Around the World
</p>
</div>
<div class="d-flex pt-2 pb-2 jared-margin">
<img
src="https://d.newsweek.com/en/full/1578566/us-iraq-iran-threat-attack-militias-proxies.webp?w=95&h=95&f=d1466c94f63e9a285e6339356cd720b9"
alt="" class="image">
<p class="w-75 pl-lg-4 p-side-bar ml-2">Iran Warns That Any U.S. Provocation Will Be Met With 'Fiercest' Response
</p>
</div>
<div class="d-flex mt-2">
<img src="https://d.newsweek.com/en/full/1578565/birmingham.webp?w=95&h=95&f=ca428638c2da1b942f881d9049019218"
alt="" class="image">
<p class="w-75 pl-lg-4 p-side-bar ml-2">Man Breaks Into Zoo Restaurant and Helps Himself to Beer During Lockdown
</p>
</div>
</div>
</section>
<section id="business" class="row border-top ">
<h2 class="col-lg-12 h2-bottom">Business</h2>
<div class="col-md-4">
<img
src="https://d.newsweek.com/en/full/1576462/geekey-tool.webp?w=397&h=265&f=d70e57ba430b23e5bbdfa4a85d37df6e"
alt="" class="w-100">
<h3 class="h3-us mt-2">The Best April Deals and Sales in Outdoor, Toys & Games and More</h3>
</div>
<div class="col-md-4 mt-4 mt-md-0">
<img
src="https://d.newsweek.com/en/full/1578135/oil-donald-trump-coronavirus-russia-saudi-arabia.webp?w=397&h=265&f=68aa7ffaedd5088cfd3f1c196001f6ab"
alt="" class="w-100">
<h3 class="h3-us mt-2">Trump Says Russia and Saudi Arabia Are Discussing End to Oil Price War</h3>
</div>
<div class="col-md-4 mt-">
<div class="d-flex mb-2 mb-lg-2">
<img
src="https://d.newsweek.com/en/full/1578055/los-angeles-dodgers-baseball-stadium.webp?w=95&h=95&f=9f1969e29492b14dbd6636e5f3b2c760"
alt="" class="image">
<p class="w-75 p-side-bar ml-2">Some Baseball Players to Get Paid $4,775 Per Day During Pandemic Shutdown
</p>
</div>
<div class="d-flex mb-2 pt-lg-2 pb-lg-2 jared-margin">
<img
src="https://d.newsweek.com/en/full/1577909/1987-stock-market-crash-dow.webp?w=95&h=95&f=a0ce5133ecc992f35f83e3350e29a3d8"
alt="" class="image">
<p class="w-75 p-side-bar ml-2">Dow Jones Set to Record Worst Quarter in 33 Years Amid COVID-19 Fears</p>
</div>
<div class="d-flex mb-2 mt-lg-2">
<img
src="https://d.newsweek.com/en/full/1552314/per-salary-banner.webp?w=95&h=95&l=50&t=43&f=2cff479e92f093034cb41d3d775f998e"
alt="" class="image">
<p class="w-75 p-side-bar ml-2">The Average Woman Loses $407,760 Over Her Life Due to the Gender Wage Gap
</p>
</div>
</div>
</section>
<section id="tech-science" class="row border-top mb-5">
<h2 class="col-lg-12 h2-bottom">Tech & Science</h2>
<div class="col-md-4">
<img
src="https://d.newsweek.com/en/full/1578985/methane-worms.webp?w=397&h=265&f=598563ba6e737a3667212f63a4f61444"
alt="" class="w-100">
<h3 class="h3-us mt-2">Worms on the Seafloor That Gobble up Methane Through Their Skin Discovered</h3>
</div>
<div class="col-md-4 mt-4 mt-md-0">
<img src="https://d.newsweek.com/en/full/1578989/ngc-4651.webp?w=397&h=265&f=a9aef3665db0bed30fdd4199c5f91905"
alt="" class="w-100">
<h3 class="h3-us mt-2">Cannibal 'Umbrella Galaxy' That Ate Neighbor Revealed in Spectacular Pic</h3>
</div>
<div class="col-md-4 mt-3 mt-md-0">
<div class="d-flex mb-2">
<img
src="https://d.newsweek.com/en/full/1578993/american-rombin-gps-tracker.webp?w=95&h=95&f=68f1930d0cbf84ac5a1995af71fbd5b4"
alt="" class=" image">
<p class=" pl-lg-4 p-side-bar ml-md-2" id="p-tech">American Robins Start Their Winter Migration 12 Days
Earlier
Than In 1994
</p>
</div>
<div class="d-flex pt-2 pb-2 jared-margin">
<img
src="https://d.newsweek.com/en/full/1578890/steel-factory-greenhouse-gas-emissions.webp?w=95&h=95&f=7c3f4720dab35dab524a9702202dd3a1"
alt="" class="image">
<p class=" pl-lg-4 p-side-bar ml-md-2" id="p-techh">COVID-19 Pandemic Could Lead to Fall in CO2 Not Seen Since
the End of WWII
</p>
</div>
<div class="d-flex mt-2">
<img src="https://d.newsweek.com/en/full/1578899/twitter.webp?w=95&h=95&f=197606c3d720cba328ecf9230bf05e49"
alt="" class=" image">
<p class="pl-lg-4 p-side-bar ml-md-2" id="p-techhh">Twitter Purges Bot Account Network that Used Coronavirus
in its Propaganda
</p>
</div>
</div>
</section>
<section id="culture-sec" class="row border-top mt-lg-5 pb-4">
<h2 class="col-lg-12 h2-bottom">Culture</h2>
<div class="col-md-4">
<img
src="https://d.newsweek.com/en/full/1579058/emma-watson-circle.webp?w=397&h=265&f=c4aebd4fcf872b6628947a5a561a7c45"
alt="" class="w-100">
<h3 class="h3-us mt-2">What Movie Ending Ruined the Whole Thing For You?</h3>
</div>
<div class="col-md-4 mt-4 mt-md-0">
<img
src="https://d.newsweek.com/en/full/1569421/shark-tank-hosts.webp?w=397&h=265&f=a77d089c87837d2bd83bd12a61979598"
alt="" class="w-100">
<h3 class="h3-us mt-2">Mark Cuban on Which Stocks Are Buys, Sells and Holds</h3>
</div>
<div class="col-md-4 mt-4 mt-md-0">
<div class="d-flex mb-2">
<img
src="https://d.newsweek.com/en/full/1579000/lighthouse-poster.webp?w=95&h=95&f=91255d7b3d72fc616ed8b69616b9e687"
alt="" class="image">
<p class="w-75 pl-lg-4 p-side-bar ml-2" id="culture">'The Lighthouse' Is the One Thing You Must Watch on Amazon
Prime in April
</p>
</div>
<div class="d-flex pt-2 pb-2 jared-margin">
<img
src="https://d.newsweek.com/en/full/1578983/denise-cantrall.webp?w=95&h=95&f=ef1a802327578d86d2e7e2193e1295bb"
alt="" class="image">
<p class="w-75 pl-lg-4 p-side-bar ml-2" id="culturee">Suburban Chicago Woman Takes Charge to Support Homeless
During COVID-19</p>
</div>
<div class="d-flex mt-2">
<img
src="https://d.newsweek.com/en/full/1578988/bill-withers.webp?w=95&h=95&f=d970d95e02301b2d68f5f8f017043bd4"
alt="" class="image">
<p class="w-75 pl-lg-4 p-side-bar ml-2" id="cultureee">Bill Withers: 5 Songs to Remember Him By</p>
</div>
</div>
</section>
<section id="sports-sec" class="row border-top mt-lg-5">
<h2 class="col-lg-12 h2-bottom">Sports</h2>
<div class="col-md-4">
<img
src="https://d.newsweek.com/en/full/1292359/braun-strowman-monday-night-raw-wwe.webp?w=397&h=265&f=6c0a2c939dfd46213492c94ba6c5d72a"
alt="" class="w-100">