-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1858 lines (1812 loc) · 67.9 KB
/
index.html
File metadata and controls
1858 lines (1812 loc) · 67.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script
src="https://kit.fontawesome.com/89faee3931.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap"
rel="stylesheet"
/>
<title>News week</title>
</head>
<body>
<div class="container-body mx-auto bg-white">
<nav>
<div class="laptop-nav">
<div class="red-nav text-white p-3">
<div class="weather">
<div class="weather-widget mb-2">
<i class="fas fa-cloud-sun mr-2"></i
><span class="font-weight-bold spn">25 Country Name XX ></span>
</div>
<div class="date">Tue, Sep 01, 2020</div>
</div>
<div class="news-logo">
<img src="./images/news-logo.png" alt="News logo" />
</div>
<div class="login-area m-2">
<span>LOGIN</span>
<button
class="sub-btn font-weight-bold btn-warning ml-2"
type="button"
>
Subscription Offers
</button>
</div>
</div>
<div class="white-nav navbar navbar-expand-md">
<div class="top-nav-container collapse navbar-collapse">
<ul class="navbar-nav py-0 flex-wrap">
<li class="nav-item py-0 px-1"><a class="nav-link">U.S.</a></li>
<li class="nav-item py-0 px-1">
<a class="nav-link">World</a>
</li>
<li class="nav-item py-0 px-1">
<a class="nav-link">Business</a>
</li>
<li class="nav-item py-0 px-1">
<a class="nav-link">Tech & Sience</a>
</li>
<li class="nav-item py-0 px-1">
<a class="nav-link">Culture</a>
</li>
<li class="nav-item py-0 px-1">
<a class="nav-link">Newsgeek</a>
</li>
<li class="nav-item py-0 px-1">
<a class="nav-link">Sports</a>
</li>
<li class="nav-item py-0 px-1">
<a class="nav-link">Health</a>
</li>
<li class="nav-item py-0 px-1">
<a class="nav-link">The debate</a>
</li>
<li class="nav-item py-0 px-1">
<a class="nav-link">Vantage</a>
</li>
<li class="nav-item py-0 px-1">
<a class="nav-link">Weather</a>
</li>
</ul>
</div>
</div>
<div class="white-nav nav navbar navbar-expand-sm">
<div class="bottom-nav-container">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link">TRENDING</a></li>
<li class="nav-item">
<a class="nav-link text-secondary">DONALD TRUMP</a>
</li>
<li class="nav-item">
<a class="nav-link text-secondary">JOE BIDEN</a>
</li>
<li class="nav-item">
<a class="nav-link text-secondary">CHINA</a>
</li>
<li class="nav-item">
<a class="nav-link text-secondary">CORONA VIRUS</a>
</li>
<li class="nav-item">
<a class="nav-link text-secondary">2020 ELECTION</a>
</li>
</ul>
</div>
</div>
</div>
<div class="mobile-nav fixed-top">
<div
id="mb"
class="d-flex flex-grow justify-content-between py-2 px-4 text-white align-items-center"
>
<img src="./images/news-logo.png" alt="News logo" />
<div class="right-mobile-nav d-flex flex-row align-items-center">
<span class="font-weight-bold">LOGIN</span>
<button
class="mobile-sub-button font-weight-bold btn-warning ml-2"
type="button"
>
Subscribe >
</button>
<i class="fas fa-bars fa-2x"></i>
</div>
</div>
</div>
</nav>
<main class="px-3">
<!-- The first section starts here -->
<div class="section-1">
<!-- The left section -->
<div class="left-section pr-3 pl-3">
<h6 class="text-secondary mb-3 mt-3 text-weight-bold">
FEATURED STORIES
</h6>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/art-img-1.jpg"
alt="art image 1"
/>
<h5>
<a href="#"
>Trump and Biden Nearly Tied for Presidency in New Emerson
Poll</a
>
</h5>
<p>
Voters who responded to the poll gave Biden 49 percent of their
support, with President Trump two percentage points behind with
47 percent of voter support.
</p>
</div>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/art-img-2.jpg"
alt="art image 2"
/>
<h5>
<a href="#"
>Laura Ingraham Cuts Trump off When He Compares Police
Shootings to Golf</a
>
</h5>
<p>
The Fox News host has asked President Donald Trump during an
interview about the dangers faced by the police.
</p>
</div>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/art-img-3.jpg"
alt="art image 3"
/>
<h5>
<a href="#"
>Fast-tracking COVID-19 Vaccine Should Not Be Done 'Lightly,'
WHO Says</a
>
</h5>
<p>
The World Health Organization advised caution in fast-tracking a
vaccine candidate but said that each country has the "sovereign
right" to do so.
</p>
</div>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/art-img-4.jpg"
alt="art image 4 "
/>
<h5>
<a href="#"
>How the Pandemic Will Change the Way We Manage Money
Forever</a
>
</h5>
<p>
An exclusive survey from Newsweek and LendingTree reveals how
the twin crises of the pandemic and a struggling economy are
changing the way we save, spend and even think about money—in
ways that will last long after life has returned to a semblance
of normalcy.
</p>
</div>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/art-img-5.jpg"
alt="art image 5"
/>
<h5>
<a href="#"
>China Demands India Withdraw Troops As Both Claim Border
Incursions</a
>
</h5>
<p>
Both the Chinese and Indian militaries have accused the other of
violating border agreements at the disputed Line of Actual
Control, leading to a new flare in tensions between the
nuclear-armed Asian neighbors.
</p>
</div>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/art-img-6.jpg"
alt="art image 6"
/>
<h5>
<a href="#"
>America's Best Physical Rehabilitation Centers 2020</a
>
</h5>
<p>
Finding reliable rehabilitation can be a challenge. We partnered
with Statista to rank the country's Best Physical Rehabilitation
Centers.
</p>
</div>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/art-img-7.jpg"
alt="art image 7"
/>
<h5>
<a href="#">What Brands do You Trust the Most?</a>
</h5>
<p>
Tell us for a chance to win. 2020 Brandspark Most Trusted
Awards. Voted by consumers like you.
</p>
</div>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/art-img-8.jpg"
alt="art image 8"
/>
<h5>
<a href="#">Best Maternity Hospitals 2020</a>
</h5>
<p>
The facilities cited by Newsweek are an elite group
demonstrating excellence in maternity care. Check the full list
here
</p>
</div>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/art-img-9.jpg"
alt="art image 9"
/>
<h5>
<a href="#"
>Newsweek AMPLIFY Launches Strategic Partnership Solutions for
Brands</a
>
</h5>
<p>
Newsweek AMPLIFY, the company's performance marketing business
unit, has launched a new program to empower digital brands with
comprehensive content marketing and advertising strategies.
</p>
</div>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/art-img-10.jpg"
alt="art image 10"
/>
<h5>
<a href="#">America’s Best Realtors 2020</a>
</h5>
<p>
Newsweek partnered with REAL Trends to sort through the data and
provide you with a list of America's Best Real Estate
Professionals
</p>
</div>
</div>
<!-- End of the left section -->
<!-- The middle section -->
<div class="middle-section p-2 d-flex flex-column row-h1">
<h6 class="text-secondary mb-3 mt-2 text-weight-bold">TOP STORY</h6>
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/kenosha.png"
alt="art image 1"
/>
<h5>
<a href="#"
>Trump and Biden Nearly Tied for Presidency in New Emerson
Poll</a
>
</h5>
<p>
Voters who responded to the poll gave Biden 49 percent of their
support, with President Trump two percentage points behind with
47 percent of voter support.
</p>
</div>
<div class="media pt-2">
<img
class="d-flex"
src="./images/donald-trump-small.png"
alt="trump"
/>
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>Trump and Biden Nearly Tied for Presidency in New Emerson
Poll</a
>
</h6>
<p class="text-justify">
Voters who responded to the poll gave Biden 49 percent of
their support, with President Trump two percentage points
behind with 47 percent of voter support.
</p>
</div>
</div>
<h6 class="text-secondary mb-3 mt-2 text-weight-bold w-100">
MY TURN
</h6>
<div class="middle-three d-flex flex-row justify-content-between">
<div class="middle-three-item m-1 d-flex flex-column">
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/middle-three-1.png"
alt="art image 1"
/>
<h6>
<a href="#" class="text-secondary text-justify"
>'I've Made a Documentary About Queen Elizabeth II's
Private Life'</a
>
</h6>
</div>
</div>
<div class="middle-three-item m-1 d-flex flex-column">
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/middle-three-2.png"
alt="art image 1"
/>
<h6>
<a href="#" class="text-secondary text-justify"
>'The Top 5 Questions I Get Asked As A Child
Psychologist'</a
>
</h6>
</div>
</div>
<div class="middle-three-item m-1 d-flex flex-column">
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/middle-three-3.png"
alt="art image 1"
/>
<h6>
<a href="#" class="text-secondary text-justify"
>'My Secret to a Happy Relationship? Live Apart'</a
>
</h6>
</div>
</div>
</div>
<!-- Middle fourth -->
<h6 class="text-secondary mb-3 mt-2 text-weight-bold w-100">
CULTURE & TRAVEL
</h6>
<div class="middle-three d-flex flex-row justify-content-between">
<div class="middle-three-item m-1 d-flex flex-column">
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/middle-four-1.png"
alt="art image 1"
/>
<h6>
<a href="#" class="text-secondary text-justify"
>Planning a Trip to One of NYC's Recently Opened Museums?
What to Know</a
>
</h6>
</div>
</div>
<div class="middle-three-item m-1 d-flex flex-column">
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/middle-four-2.png"
alt="art image 1"
/>
<h6>
<a href="#" class="text-secondary text-justify"
>The Most Interesting Women in the World: A Century of
Explorers</a
>
</h6>
</div>
</div>
<div class="middle-three-item m-1 d-flex flex-column">
<div class="art-item">
<img
class="w-100 mb-2"
src="./images/middle-four-3.png"
alt="art image 1"
/>
<h6>
<a href="#" class="text-secondary text-justify"
>First Black Woman to Host Travel Show Flies in the Face
of Convention</a
>
</h6>
</div>
</div>
</div>
<!-- Middle fifth -->
<h6 class="text-secondary mb-3 mt-2 text-weight-bold w-100">
MORE STORIES
</h6>
<div class="media pt-2">
<img
class="d-flex"
src="./images/donald-trump-small.png"
alt="trump"
/>
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>Trump Says Biden's Numbers Are Plunging—Poll Trackers
Barely Show A Change</a
>
</h6>
<p class="text-justify">
As the president continues to target his Democratic rival, he
also trails in most polling ahead of November's vote.
</p>
</div>
</div>
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-1.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>Second Stimulus Check Update: What We Know About Payments,
Timing</a
>
</h6>
<p class="text-justify">
Americans could see another round of payments in September,
but it'll require Democrats and Republicans to resolve the
nearly $1 trillion gap between them.
</p>
</div>
</div>
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-2.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>Pine Gulch Fire Update: Hundreds Work to Contain Largest
Fire in CO History</a
>
</h6>
<p class="text-justify">
Emergency management teams contained a significant portion of
the wildfire during the past week, although weather
forecasters warned dry conditions posed elevated risks of
further growth on Monday.
</p>
</div>
</div>
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-3.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>Christian Site Raises Over 250K for Alleged Kenosha
Shooter</a
>
</h6>
<p class="text-justify">
The GiveSendGo.com campaign has raised at least $261,000 from
more than 6,000 donations.
</p>
</div>
</div>
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-4.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>India Surpasses U.S. Record of New Coronavirus Infections
for Second Day</a
>
</h6>
<p class="text-justify">
The South Asian country has the third highest number of
COVID-19 infections and deaths in the world after the U.S. and
Brazil respectively.
</p>
</div>
</div>
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-5.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>Noose-Shaped Rope Found at California Home Officially
Labeled Hate Incident</a
>
</h6>
<p class="text-justify">
A Los Angeles County resident expressed concern to local
reporters after her son reportedly found the rope hanging from
a tree in their side yard on Saturday morning.
</p>
</div>
</div>
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-6.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>Most Kenosha Arrests of People From Outside City</a
>
</h6>
<p class="text-justify">
Of the 175 people arrested between August 24 and August 30,
12:30 p.m., 102 were people from 44 different cities outside
Kenosha, Wisconsin.
</p>
</div>
</div>
<div class="d-flex flex-column sticky">
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-7.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>Jacob Blake's Father Asks Kenosha Police for Explanation
During Rally</a
>
</h6>
<p class="text-justify">
Jacob Blake's father spoke alongside community leaders
during a rally held outside a Wisconsin courthouse on
Saturday.
</p>
</div>
</div>
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-8.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>Kentucky AG Says Office Received 'Critical' Report in
Breonna Taylor Case</a
>
</h6>
<p class="text-justify">
Benjamin Crump, one of the lawyers representing Taylor's
family, said he hopes the report allows the attorney
general's office to "ramp up investigation" into the police
shooting that preceded her death.
</p>
</div>
</div>
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-9.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>GOP Candidate Faces Backlash After Posting, Deleting Meme
About Kenosha</a
>
</h6>
<p class="text-justify">
Barry Moore, a congressional candidate for Alabama's 2nd
District, said Sunday that he plans to focus on positive
messaging moving forward.
</p>
</div>
</div>
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-11.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>Black Americans Warned of Increased Colorectal Cancer
Risks</a
>
</h6>
<p class="text-justify">
The Black Panther star died at the age of 43 after privately
battling the disease for four years.
</p>
</div>
</div>
<div class="media pt-2">
<img class="d-flex" src="./images/mid-fifth-11.png" alt="mid" />
<div class="media-body ml-2">
<h6 class="mt-0 text-left">
<a href="#"
>DHS Chief Blames Portland 'Lawlessness, Chaos' on Local
Democratic Leaders</a
>
</h6>
<p class="text-justify">
Acting Secretary of Homeland Security Chad Wolf said
Portland, Oregon residents are facing "lawlessness and
chaos," after another night of violent clashes turned
deadly.
</p>
</div>
</div>
</div>
</div>
<!-- End of the middle section -->
<!-- The right section -->
<div class="right-section pl-3 pr-3">
<h6 class="text-secondary mb-3 mt-2 text-weight-bold">
THE DEBATE
</h6>
<div class="thick-border">
<div class="media pt-2 border-0">
<img
class="d-flex person-logo"
src="./images/right-first-1.png"
alt="mid"
/>
<div class="media-body ml-3">
<h5 class="mt-0 text-left">
<a href="#">Avoid War, Defend America, Recognize Taiwan</a>
</h5>
<p class="text-justify">BY GORDON G. CHANG</p>
</div>
</div>
<div class="vs">VS</div>
<div class="media pt-2 border-0">
<div class="media-body mr-3">
<h5 class="mt-0 text-left">
<a href="#"
>Don't Rush to Fully Normalize Relations With Taiwan</a
>
</h5>
<p class="text-justify">BY JEROME A. COHEN</p>
</div>
<img
class="d-flex person-logo"
src="./images/right-first-2.png"
alt="mid"
/>
</div>
</div>
<h6 class="text-secondary mb-3 mt-2 text-weight-bold">OPINION</h6>
<div class="media pt-2">
<img
class="d-flex person-logo"
src="./images/right-first-3.png"
alt="mid"
/>
<div class="media-body ml-3">
<h5 class="mt-0 text-left">
<a href="#"
>The Real Threat to Law and Order Is Trump's Presidency</a
>
</h5>
<p class="text-justify">BY ROBERT REICH</p>
</div>
</div>
<div class="media pt-2">
<img
class="d-flex person-logo"
src="./images/right-first-4.png"
alt="mid"
/>
<div class="media-body ml-3">
<h5 class="mt-0 text-left">
<a href="#"
>Will Japan's Next Prime Minister Manage the U.S.
Relationship Well?</a
>
</h5>
<p class="text-justify">BY MARK JOSEPH</p>
</div>
</div>
<div class="media pt-2">
<img
class="d-flex person-logo"
src="./images/right-first-5.png"
alt="mid"
/>
<div class="media-body ml-3">
<h5 class="mt-0 text-left">
<a href="#">Iranian Laborers Need Our Help</a>
</h5>
<p class="text-justify">
BY ALIREZA NADER AND BENJAMIN WEINTHAL
</p>
</div>
</div>
<div class="media pt-2">
<img
class="d-flex person-logo"
src="./images/right-first-6.png"
alt="mid"
/>
<div class="media-body ml-3">
<h5 class="mt-0 text-left">
<a href="#"
>The Time Is Now for a Jewish Civil Rights Movement</a
>
</h5>
<p class="text-justify">BY BROOKE GOLDSTEIN</p>
</div>
</div>
<div class="media pt-2">
<img
class="d-flex person-logo"
src="./images/right-first-7.png"
alt="mid"
/>
<div class="media-body ml-3">
<h5 class="mt-0 text-left">
<a href="#">Biden vs. Trump on Climate? No Comparison</a>
</h5>
<p class="text-justify">BY JOSH FREED</p>
</div>
</div>
<div class="media pt-2">
<img
class="d-flex person-logo"
src="./images/right-first-8.png"
alt="mid"
/>
<div class="media-body ml-3">
<h5 class="mt-0 text-left">
<a href="#">Confronting Iran Before the November Election</a>
</h5>
<p class="text-justify">BY JACOB NAGEL AND MARK DUBOWITZ</p>
</div>
</div>
<div class="media pt-2">
<img
class="d-flex person-logo"
src="./images/right-first-9.png"
alt="mid"
/>
<div class="media-body ml-3">
<h5 class="mt-0 text-left">
<a href="#"
>Black and Latinx People Are Primary Targets for
Disinformation. We Must Fight Back</a
>
</h5>
<p class="text-justify">BY BRIDGET TODD</p>
</div>
</div>
<div class="art-item mt-4">
<img
class="w-100"
src="./images/right-second-1.jpg"
alt="right section second 1"
/>
<div class="p-3 border">
<h5>
<a href="#"
>What Could a Career in Engineering or Computer Science Do
For You?</a
>
</h5>
<p>
Could this be the perfect time for you to pursue a career in
engineering or computer science? Find out how to get started.
</p>
</div>
</div>
<div class="free-sign-sec d-flex flex-column p-3 my-2">
<div
class="in-the-mag-header justify-content-center d-flex flex-row align-items-center pb-2"
>
<img src="./images/N.svg" class="N mr-2" alt="N " />
<h5>START YOUR DAY WITH OUR TOP 5 ARTICLES</h5>
</div>
<form action="submit" class="free-sign">
<input
type="email"
id="email"
class="form-control form-control-lg my-2"
placeholder="Email adress"
/>
<button class="btn btn-danger w-100" type="button">
FREE SIGN UP >
</button>
</form>
</div>
<div class="art-item mt-4">
<img
class="w-100"
src="./images/right-second-2.jpg"
alt="right section second 2"
/>
<div class="p-3 border">
<h5>
<a href="#">What Makes the Best Lawyers Stand Out?</a>
</h5>
<p>
The unthinkable has happened and you need a good lawyer to
turn to, how do you chose?
</p>
</div>
</div>
<div class="art-item mt-4">
<img
class="w-100"
src="./images/right-second-3.jpg"
alt="right section second 3"
/>
<div class="p-3 border">
<h5>
<a href="#"
>America's Best Addiction Treatment Centers 2020</a
>
</h5>
<p>
Newsweek partnered with global market research firm Statista
Inc. to rank the best U.S. treatment facilities that focus on
addiction.
</p>
</div>
</div>
<div class="div-stick">
<div class="art-item mt-4">
<img
class="w-100"
src="./images/right-second-4.jpg"
alt="right section second 4"
/>
<div class="p-3 border">
<h5>
<a href="#">Best Infection Prevention Products</a>
</h5>
<p>
During the coronavirus outbreak, health care is more
important than ever. In Newsweek's first Best Health Care
series, we highlight the best infection prevention products.
</p>
</div>
</div>
<div class="art-item mt-4">
<img
class="w-100"
src="./images/right-second-5.jpg"
alt="right section second 5"
/>
<div class="p-3 border">
<h5>
<a href="#">Best Nursing Homes 2021</a>
</h5>
<p>
Newsweek is partnering with the respected global data
research firm Statista Inc. to establish a ranking of Best
Nursing Homes 2021. If you work in this field, please
participate in our survey.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- The fourth section starts here -->
<div class="section-3 mt-4">
<div
class="in-the-mag-header justify-content-center d-flex flex-row align-items-center border-bottom pb-2"
>
<img src="./images/N.svg" class="N mr-2" alt="N " />
<h5>IN THE MAGAZINE</h5>
</div>
<div
class="section-3-flex d-flex flex-row justify-content-between pt-3 mx-3 flex-wrap"
>
<div class="art-item align-self-stretch art-item-fst">
<img
class="w-100 art-item-fst-img"
src="./images/fourth-1.png"
alt="art image 1"
/>
<a
href="#"
class="text-dark text-center w-100 font-weight-bold btn"
>SEE ALL FEATURES >
</a>
</div>
<div class="art-item font-wght align-self-start mt-4">
<img
class="w-100 mb-2"
src="./images/fourth-2.png"
alt="art image 1"
/>
<div class="art-item-spn my-2">
<span class="py-1 px-2">COVER</span>
<a href="#" class="p-1">POLITICS</a>
</div>
<h6>
<a href="#" class="text-dark text-justify"
>Undecided Voters Were Key to Trump's Win in 2016. Will They
Deliver Again?</a
>
</h6>
</div>
<div class="art-item font-wght align-self-start mt-4">
<img
class="w-100 mb-2"
src="./images/fourth-3.png"
alt="art image 1"
/>
<div class="art-item-spn my-2">
<span class="py-1 px-2">FEATURES</span>
<a href="#" class="p-1">POLITICS</a>
</div>
<h6>
<a href="#" class="text-dark text-justify"
>Eight Congressional Races Could Decide if Biden Beats
Trump</a
>
</h6>
</div>
<div class="art-item font-wght align-self-start mt-4">
<img
class="w-100 mb-2"
src="./images/fourth-4.png"
alt="art image 1"
/>
<div class="art-item-spn my-2">
<span class="py-1 px-2">PERISCOPE</span>
<a href="#" class="p-1">WORLD</a>
</div>
<h6>
<a href="#" class="text-dark text-justify"
>Joe Biden Tells China He Won't Be a Pushover. Will Beijing
Believe Him?</a
>
</h6>
</div>
<div class="art-item font-wght mt-4">
<img
class="w-100 mb-2"
src="./images/fourth-5.png"
alt="art image 1"
/>
<div class="art-item-spn my-2">
<span class="py-1 px-2">PERISCOPE</span>
<a href="#" class="p-1">CULTURE</a>
</div>