-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
2030 lines (2030 loc) · 80.1 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" dir="ltr">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:400,900%7cNoto+Sans+TC:300,700%7cRoboto+Condensed&display=swap"
rel="stylesheet"
/>
<title>Newsweek</title>
</head>
<body class="mx-0 mx-xl-3">
<header class="page-header container-fluid border-bottom mb-0">
<div class="header-top row bg-news text-white px-1">
<div class="col-lg-4 d-none d-lg-inline pt-2">
<br>
<br>
Mon, Sep 30, 2019
</div>
<div class="logo col-4 pb-2 col-md-3 col-lg-4 flex-xs-6 pt-lg-2"></div>
<div class="col-7 col-md-8 col-lg-4 flex-xs-4 flex-xs-6 bg-news pt-3 pt-lg-2 text-right pr-2">
<br class="d-none d-lg-inline">
<br class="d-none d-lg-inline">
<p class=" col-12 bg-news">
<a class="text-white text-center text-sm-right font-weight-bolder bg-news pt-1" href="#">SIGN IN</a>
<span class="bg-white py-1"><a class="text-danger bg-white text-center text-sm-right font-weight-bolder px-1" href="#">SUBSCRIBE</a>
</span>
<span class="bg-white py-1"><a class="text-danger bg-white d-none arrow-appear text-center text-sm-right font-weight-bolder pr-1" href="#">></a>
</span>
</p>
</div>
<a class="dropdown dropdown-toggle col-1 pl-0 pl-md-4 pr-md-3 py-3 bg-news cursor-pointer d-lg-none"
data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
<span id="span-1" class="bg-warning px-3 d-block mb-1 h-25"></span>
<span class="bg-warning px-3 d-block mb-1 h-25"></span>
<span class="bg-warning px-3 d-block h-25"></span>
</a>
<ul class="dropdown-menu font-weight-bold mt-5 ">
<li class="dropown-item nav-item py-0 pl-0">
<input
class="border-0 text-secondary"
type="text"
name="Search"
value=" Search"
/>
</li>
<li class="dropown-item nav-item py-2 pl-2">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>U.S.</a
>
</h5>
</li>
<li class="dropown-item nav-item pt-1 pb-2 pl-2">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>World</a
>
</h5>
</li>
<li class="dropown-item nav-item pt-1 pb-2 pl-2">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Business</a
>
</h5>
</li>
<li class="dropown-item nav-item pt-1 pb-2 pl-2">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Tech & Science</a
>
</h5>
</li>
<li class="dropown-item nav-item pt-1 pb-2 pl-2">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Culture</a
>
</h5>
</li>
<li class="dropown-item nav-item pt-1 pb-2 pl-2">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Newsgeek</a
>
</h5>
</li>
<li class="dropown-item nav-item pt-1 pb-2 pl-2">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Sports</a
>
</h5>
</li>
<li class="dropown-item nav-item pt-1 pb-2 pl-2">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Health</a
>
</h5>
</li>
<li class="dropown-item nav-item pt-1 pb-2 pl-2">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Opinion</a
>
</h5>
</li>
<li class="dropown-item nav-item pt-1 pb-2 pl-2">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold"
href="#"
>Vantage</a
>
</h5>
</li>
</ul>
</div>
<nav id="header-nav" class="header-bottom container-fluid col-12 d-none d-lg-inline-flex h-auto"
>
<ul class="col-10 nav nav-fill font-weight-bold">
<li class="nav-item py-3">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>U.S.</a
>
</h5>
</li>
<li class="nav-item py-3">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>World</a
>
</h5>
</li>
<li class="nav-item py-3">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Business</a
>
</h5>
</li>
<li class="nav-item py-3">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Tech & Science</a
>
</h5>
</li>
<li class="nav-item py-3">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Culture</a
>
</h5>
</li>
<li class="nav-item py-3">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Newsgeek</a
>
</h5>
</li>
<li class="nav-item py-3">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Sports</a
>
</h5>
</li>
<li class="nav-item py-3">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Health</a
>
</h5>
</li>
<li class="nav-item py-3">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold border-right"
href="#"
>Opinion</a
>
</h5>
</li>
<li class="nav-item py-3">
<h5>
<a
class="nav-link py-0 px-0 px-xl-2 text-body font-weight-bold"
href="#"
>Vantage</a
>
</h5>
</li>
</ul>
<div class="row col-2">
<input
class="col-7 border-0 text-secondary"
type="text"
name="Search"
value="Search"
/>
<div class="col-5 red-tab"></div>
</div>
</nav>
</header>
<main class="row justify-content-center">
<div class="row col-lg-8 col-md-12 col-12 flex-md-row-reverse">
<section id="top-story" class="col-lg-7 col-md-6 col-12 px-3">
<h6 class="text-black-50 font-weight-bold pt-3 mb-2">TOP STORY</h6>
<article class="TS-1">
<div class="position-relative">
<a
class="category position-absolute d-block pt-2 pb-3 px-3"
href="#"
>POLITICS</a
>
<img
class="img-fluid mb-2 w-100 cursor-pointer"
src="https://d.newsweek.com/en/full/1531781/mcconnell-no-choice-address-impeachment.jpg?w=591&h=364&f=69229e4f40bd7a66f86d529f03327c28"
alt="TS1"
/>
</div>
<h5 class="mb-3">
<a class="font-weight-bolder text-body" href="#"
>McConnell Says He May Have 'No Choice' but to Consider
Impeachment</a
>
</h5>
<p class="mb-3 text-dark">
Chances are rising that Senate Majority Leader Mitch McConnell
will soon have to address the impeachment of President Donald
Trump. "How long you're on it is a whole different matter," he
said on CNBC.
</p>
<h6 class="border-top border-bottom py-2 px-1 mb-3">
<a class="font-weight-bolder text-body " href="#"
>Trump Demands to Meet Whistleblower in Ukraine Scandal</a
>
</h6>
</article>
<div class="row flex-md-column-reverse ">
<section id="more-stories" class="col-12 mb-5">
<h6
class="text-black-50 pb-3 mb-3 font-weight-bold border-bottom"
>
MORE STORIES
</h6>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531917/donald-trump-civil-war-tweets-twitter-impeachment.jpg?w=135&h=90&f=24995e94aa02fe97918ed35b5f46acf5"
alt="MS-1"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bolder text-body" href="#"
>Historian Warns America Looks 'Eerily Similar' to Pre-Civil
War Period</a
>
</h6>
<p class="mb-3 text-dark">
The Boston College professor, an expert in 19th century
America, said President Donald Trump "was onto something" with
his Civil War tweets.
</p>
</article>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531764/donald-trump-ukraine-russia-transcript-memo.jpg?w=135&h=90&f=41170c3890b8522cd8b2120f5ca04a18"
alt="MS-2"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bolder text-body" href="#"
>Trump-Putin Calls Might Be Hidden to Save Embarrassment:
Former WH Official</a
>
</h6>
<p class="mb-3 text-dark">
A record of the now infamous call between Trump and Ukrainian
President Volodymyr Zelensky was reportedly kept on a top
secret server intended only for the most sensitive material.
</p>
</article>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531799/milley-30sept2019.jpg?w=135&h=90&f=6d9c69f5da1a95d267fb8650ab50ec1e"
alt="MS-3"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bolder text-body" href="#">
Milley Takes Over at Department of Defense as Trump Thanks
Dunford for Presidential Run
</a>
</h6>
<p class="mb-3 text-dark">
General Mark A. Milley of the U.S. Army was sworn in on Monday
as the highest-ranking military officer in the country. Milley
takes over as the Pentagon continues engagements in seven
countries and amid a tumultuous presidency.
</p>
</article>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531827/collins-arrested-insider-trading.jpg?w=135&h=90&f=d26f5e1d9fb970894d826fc4f73273ff"
alt="MS-4"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bolder text-body" href="#">
New York Representative Chris Collins Resigns: Everything We
Know</a
>
</h6>
<p class="mb-3 text-dark">
Federal prosecutors have accused Collins of passing along
sensitive information to family members while he sat on the
board of Australian-based Innate Immunotherapeutics.
</p>
</article>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531549/elizabeth-warren.jpg?w=135&h=90&f=87b88814f3c88b0d7721a4c22f09783e"
alt="MS-5"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bolder text-body" href="#">
Elizabeth Warren's Trump-Like Enthusiasm Gives Her an Edge:
Dem Strategist</a
>
</h6>
<p class="mb-3 text-dark">
Democratic strategist and communications expert Michael Gordon
told Newsweek there were clear reasons Warren was surging
ahead.
</p>
</article>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531672/planet-nine.jpg?w=135&h=90&f=fe3b5ba958f40b60f7e0b320809d39a4"
alt="MS-6"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bolder text-body" href="#">
Planet Nine Mystery Could Be Caused by a Black Hole Say
Scientists</a
>
</h6>
<p class="mb-3 text-dark">
Five years ago scientists proposed the hypothetical existence
of a large world tens of millions of miles from the Sun, which
has come to be known as "Planet Nine."
</p>
</article>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531605/mohammed-bin-salman-saudi-arabia-jamal-khashoggi.jpg?w=135&h=90&f=94d55ea35e54a0589f42e0f930e7ef33"
alt="MS-7"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bolder text-body" href="#">
Saudi Crown Prince Says Jamal Khashoggi Murder Hurt Him
</a>
</h6>
<p class="mb-3 text-dark">
Khashoggi was murdered by a Saudi hit squad in the country's
Istanbul consulate in 2018, allegedly under Mohammed bin
Salman's direct orders.
</p>
</article>
<article class="mb-3">
<img
src="https://d.newsweek.com/en/full/1531804/ncaa.jpg?w=135&h=90&f=bf9eb6a37dc796a23499a56b95614e07"
alt="MS-8"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bolder text-body" href="#">
California Becomes First State to Let College Athletes Make
Money</a
>
</h6>
<p class="mb-3 text-dark">
California Governor Gavin Newsom signed a bill that would
allow college athletes in the state to profit off of their
name, image and likeness.
</p>
</article>
</section>
<section id="culture-travel" class="row mb-3 col-12 bg-light">
<h6
class="col-12 text-black-50 font-weight-bold pt-3 pb-2 mb-2 bg-light"
>
CULTURE & TRAVEL
</h6>
<article class="col-12 col-md-6 bg-light pr-2 mb-3">
<img
class="img-fluid mb-3 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1510431/beer-gardens.jpg?w=397&h=265&f=0b3b67987277e00a09e006704a14d055"
alt="CT-1"
/>
<h5 class="bg-light mb-1 px-2">
<a class="bg-light font-weight-normal text-dark" href="#">
9 Best Beer Gardens in Berlin</a
>
</h5>
<p class="bg-light text-secondary mb-4 px-2 pb-2">
Beer, sunshine, and sausages are all you need to enjoy one of
Berlin's brilliant outdoor beer gardens.
</p>
<a
class="category bg-info font-weight-light text-dark position-absolute d-block py-1 px-2 mx-2"
href="#"
>Beer</a
>
</article>
<article class="col-12 col-md-6 bg-light pl-2 mb-3">
<img
class="img-fluid mb-3 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1523229/blue-sinkhole-3.jpg?w=397&h=265&f=545c922d5f92efdcb46be37e114e66e3"
alt="CT-2"
/>
<h5 class="bg-light mb-1 px-2">
<a class="font-weight-normal bg-light text-dark" href="#">
A Blue Hole Expedition May Help Save the Great Barrier
Reef</a
>
</h5>
<p class="bg-light text-secondary mb-4 px-2 pb-2">
Ambitious reef-wide health check could provide valuable
information to save the world's largest coral reef.
</p>
<a
class="category bg-info font-weight-light text-dark position-absolute d-block py-1 px-2 mx-3"
href="#"
>Great Barrier Reef</a
>
</article>
<article class="col-12 col-md-6 bg-light pr-2 mb-3">
<img
class="img-fluid mb-3 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1523651/three-glasses-wine.jpg?w=397&h=265&f=bfd6e7df82a73a21cdc208b630eeb105"
alt="CT-3"
/>
<h5 class="bg-light mb-1 px-2">
<a class="font-weight-normal bg-light text-dark" href="#">
A Manifesto for Agriculture and Natural Wine</a
>
</h5>
<p class="bg-light text-secondary mb-4 px-2 pb-2">
Natural wine challenges viticultural and cultural norms by
being unapologetically connected to nature.
</p>
<a
class="category bg-info font-weight-light text-dark position-absolute d-block py-1 px-2 mx-2"
href="#"
>Wine</a
>
</article>
<article class="col-12 col-md-6 bg-light pl-2 mb-3">
<img
class="img-fluid mb-3 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1509498/lions-safari.jpg?w=397&h=265&l=0&t=0&f=afdd7b8de0f1e30d30fd23ee9d8de1c7"
alt="CT-4"
/>
<h5 class="bg-light mb-1 px-2">
<a class="font-weight-normal bg-light text-dark" href="#">
A Member of My Tribe: A Long Ramble in the Kenyan Bush with
My Uncle</a
>
</h5>
<p class="bg-light text-secondary mb-4 px-2 pb-2">
Writer David Farley takes a walking safari through the Kenyan
bush with an uncle he had never met before.
</p>
<a
class="category bg-info font-weight-light text-dark position-absolute d-block py-1 px-2 mx-3"
href="#"
>Kenya</a
>
</article>
</section>
</div>
</section>
<section
id="featured-stories"
class="col-lg-5 col-md-6 col-12 pl-4 pr-3"
>
<h6 class="text-black-50 pt-3 font-weight-bold mb-2">
FEATURED STORIES
</h6>
<article>
<div class="position-relative">
<a
class="category position-absolute d-block pt-2 pb-3 px-3"
href="#"
>NEWS</a
>
<img
class="img-fluid mb-2 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1531911/hong-kong-china-national-day-october-1.jpg?w=397&h=265&q=90&f=6c8c7bad840aa3921c8b890a5920c420"
alt="FS1"
/>
</div>
<h5 class="mb-3">
<a class="font-weight-bolder text-body" href="#"
>Hong Kong Protesters Spoil China's 70th Anniversary
Celebrations</a
>
</h5>
<p class="mb-3 text-dark">
Tens of thousands of Hong Kongers are on the streets once again,
facing off with police who are on high alert for the national
celebrations.
</p>
</article>
<article>
<div class="position-relative">
<a
class="category position-absolute d-block pt-2 pb-3 px-3"
href="#"
>NEWS</a
>
<img
class="img-fluid mb-2 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1531838/climate-protest.jpg?w=397&h=265&q=90&f=167ad45ad7c1dedd01929cb8b7333e18"
alt="FS2"
/>
</div>
<h5 class="mb-3">
<a class="font-weight-bolder text-body" href="#"
>Greenwashing: How Businesses Hide Unsustainable Practices</a
>
</h5>
<p class="mb-3 text-dark">
"A common and pernicious form of greenwashing is saying one thing
on your company's sustainability but doing another thing on the
trade associations that you're funding," Ben Ratner told Newsweek.
</p>
</article>
<article>
<div class="position-relative">
<a
class="category position-absolute d-block pt-2 pb-3 px-3"
href="#"
>NEWS</a
>
<img
class="img-fluid mb-2 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1530395/beef-angus-burger-hamburger-food-stock-getty.jpg?w=397&h=265&q=90&f=e4ae35b2f50df1bfd5a8b48957c8138a"
alt="FS3"
/>
</div>
<h5 class="mb-3">
<a class="font-weight-bolder text-body" href="#"
>Keep Eating Red and Processed Meat, Scientists Say in
Controversial Study</a
>
</h5>
<p class="mb-3 text-dark">
"Unfortunately, this information will likely confuse consumers,"
one expert told Newsweek.
</p>
</article>
<article>
<div class="position-relative">
<a
class="category position-absolute d-block pt-2 pb-3 px-3"
href="#"
>SURVEY</a
>
<img
class="img-fluid mb-2 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1527409/best-online-shops-2020.png?w=397&h=265&q=90&f=8662347cdc80612bafa925e60426b353"
alt="FS4"
/>
</div>
<h5 class="mb-3">
<a class="font-weight-bolder text-body" href="#"
>Best Online Shops 2020</a
>
</h5>
<p class="mb-3 text-dark">
Where should customers go for the best products, prices and
service? We ranked the top 1,000 shops across eight industries and
39 categories.
</p>
</article>
<article class="border mb-4">
<div class="position-relative">
<a
class="category position-absolute text-info d-block pt-2 pb-3 px-3"
href="#"
>SPONSORED INSIGHT</a
>
<img
class="img-fluid mb-2 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1519900/west-texas-m-university.jpg?w=343&h=229&f=a0387d862989a436f9b9472e34298d47"
alt="FS5"
/>
</div>
<h5 class="mb-3">
<a class="font-weight-bolder text-body" href="#"
>Why You Should Be An Engineer & Why ABET Is Important to that
Path.</a
>
</h5>
<p class="mb-3 text-dark">
Do you dream of changing the world? Do you want to make a
practical difference in people’s lives? Engineers do both these
things. Find out how to join them.
</p>
</article>
<article class="border">
<div class="position-relative">
<a
class="category position-absolute text-info d-block pt-2 pb-3 px-3"
href="#"
>SPONSORED INSIGHT</a
>
<img
class="img-fluid mb-2 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1515361/vittoriavita-ukrainian-surrogacy-agency.png?w=343&h=229&f=6160e31fcdb309c579105da92deb9f1f"
alt="FS6"
/>
</div>
<h5 class="mb-3">
<a class="font-weight-bolder text-body" href="#"
>Infertility - A look at the leading clinics in the field</a
>
</h5>
<p class="mb-3 text-dark">
There can be family related, culturally linked, and even political
reasons why prospective parents face significant challenges
seeking conception treatment. Who can they turn to?
</p>
</article>
</section>
</div>
<aside class="container-fluid col-lg-4 col-md-12 col-12 pl-3 pr-4">
<section id="opinion">
<h6 class="text-black-50 pt-3 font-weight-bold mb-2">OPINION</h6>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531811/morris-pearl.png?w=63&h=63&f=39e5b2cb9199662d54f6bcdcdc8ebca9"
alt="O-1"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bold text-body" href="#"
>I'm a Millionaire—But as a Patriot, I Support the General
Motors Strike</a
>
</h6>
<p class="font-weight-bold mb-3 text-muted">
BY MORRIS PEARL
</p>
</article>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531687/dariely-rodriguez.png?w=63&h=63&f=82f66b045f28035e371ea100da5638ec"
alt="O-2"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bold text-body" href="#"
>Of Course Employers Want to Talk It Out. But Workers Deserve
Their Day in Court</a
>
</h6>
<p class="font-weight-bold mb-3 text-muted">
BY DARIELY RODRIGUEZ
</p>
</article>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/83499/newt-gingrich.png?w=63&h=63&l=48&t=55&f=d8b4f8dfaad8a5f0f71bffcc6c0d6a77"
alt="O-3"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bold text-body" href="#"
>Taking Action in Hong Kong Is in America's Moral and Economic
Interest</a
>
</h6>
<p class="font-weight-bold mb-3 text-muted">
BY NEWT GINGRICH
</p>
</article>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531320/ahmed-sahi.png?w=63&h=63&f=47c7fc05ada162fa66aa250382a017b9"
alt="O-4"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bold text-body" href="#"
>I'm Pakistani-Canadian, and I Forgive Justin Trudeau</a
>
</h6>
<p class="font-weight-bold mb-3 text-muted">
BY AHMED SAHI
</p>
</article>
<article class="border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/109198/lee-habeeb.png?w=63&h=63&f=dd1164c722d99b834fc2f3f410f433d4"
alt="O-5"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bold text-body" href="#"
>The Remarkable Story of an American Officer Who Saved 200
Lives</a
>
</h6>
<p class="font-weight-bold mb-3 text-muted">
BY LEE HABEEB
</p>
</article>
<article class="mb-3">
<img
src="https://d.newsweek.com/en/full/1531056/kathryn-spletstoser.png?w=63&h=63&f=52758742696417bedff18fb0925b8625"
alt="O-6"
class="float-left mr-3 mb-3 cursor-pointer"
/>
<h6 class="mb-1">
<a class="font-weight-bold text-body" href="#">
The Military Is Promoting the General Who Assaulted Me, but It
Can't Stonewall #MeToo Forever</a
>
</h6>
<p class="font-weight-bold mb-3 text-muted">
BY KATHRYN SPLETSTOSER
</p>
</article>
</section>
<section id="latest-news">
<h6 class="text-black-50 pt-3 font-weight-bold mb-2">LATEST NEWS</h6>
<article class="row border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1519868/police-line.jpg?w=397&h=265&f=483901185fd5e3c77917a75ab44c5668"
alt="LN-1"
class="col-4 mr-3 mb-3 cursor-pointer"
/>
<h6 class="col-7 mb-1">
<a class="font-weight-bolder text-body" href="#">
Louisiana Mother, Daughter Arrested After Pet Dog Found with
Severed Legs</a
>
</h6>
</article>
<article class="row border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531934/khyler-edman.jpg?w=397&h=265&f=e311b93f5f9dec234d188b04a8845534"
alt="LN-2"
class="col-4 mr-3 mb-3 cursor-pointer"
/>
<h6 class="col-7 mb-1">
<a class="font-weight-bolder text-body" href="#">
Florida Teenager Killed Protecting His 5-Year-Old Sibling During
Break-In</a
>
</h6>
</article>
<article class="row border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531927/lindsey-graham.jpg?w=397&h=265&f=7732d2968686a2dc08d6ce275afd133c"
alt="LN-3"
class="col-4 mr-3 mb-3 cursor-pointer"
/>
<h6 class="col-7 mb-1">
<a class="font-weight-bolder text-body" href="#">
Lindsey Graham Claims NYT Article Is Plot by the Left</a
>
</h6>
</article>
<article class="row border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531941/decapitated-alligator-found-florida.jpg?w=397&h=265&f=f5ccda294bf23770ea50528cbb328ecc"
alt="LN-4"
class="col-4 mr-3 mb-3 cursor-pointer"
/>
<h6 class="col-7 mb-1">
<a class="font-weight-bolder text-body" href="#">
Decapitated Alligator Found on Side of Florida Road</a
>
</h6>
</article>
<article class="row border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1531876/donald-trump.jpg?w=397&h=265&f=82ef37709bd01aa638df46c9bea1f57c"
alt="LN-5"
class="col-4 mr-3 mb-3 cursor-pointer"
/>
<h6 class="col-7 mb-1">
<a class="font-weight-bolder text-body" href="#">
Breitbart Trends After Donald Trump Tweets Poll With Almost 98%
Support</a
>
</h6>
</article>
<article class="row border-bottom mb-3">
<img
src="https://d.newsweek.com/en/full/1026515/oklahoma-city.jpg?w=397&h=265&f=d268325912e7b770c023e4c0b5ca877e"
alt="LN-6"
class="col-4 mr-3 mb-3 cursor-pointer"
/>
<h6 class="col-7 mb-1">
<a class="font-weight-bolder text-body" href="#">
Oklahoma Women Organizing Topless Scooter Ride After Federal
Court Ruling</a
>
</h6>
</article>
<article class="row mb-3">
<img
src="https://d.newsweek.com/en/full/1531907/anza-trail-school.jpg?w=397&h=265&f=c436118bbeb170efa7cbebfb7a699303"
alt="LN-7"
class="col-4 mr-3 mb-3 cursor-pointer"
/>
<h6 class="col-7 mb-1">
<a class="font-weight-bolder text-body" href="#">
School Shooting Threats Force Closure of All Schools in Arizona
District</a
>
</h6>
</article>
<article class="border mb-3">
<div class="position-relative">
<a
class="category position-absolute text-info d-block pt-2 pb-3 px-3"
href="#"
>SPONSORED INSIGHT</a
>
<img
class="img-fluid mb-2 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1529027/new-york-medical-college.jpg?w=343&h=229&f=c4792199e117d74538208e0760c3e83e"
alt="LN-8"
/>
</div>
<h5 class="mb-3">
<a class="font-weight-bolder text-body" href="#"
>What Can a Degree in Public Health Do For You?</a
>
</h5>
<p class="mb-3 text-dark">
The field of public health is a powerful draw for those who feel
inspired to make a positive difference in their communities. Find
out more.
</p>
</article>
</section>
</aside>
</main>
<section id="in-the-mag" class="row justify-content-center ml-0 pl-2 pl-4">
<div class="row d-lg-flex container-fluid mb-4">
<section id="magazine" class="col-12 col-md-3 mt-5 pr-4 ">
<div class="position-relative">
<a
class="category position-absolute d-block pt-2 pb-3 px-3"
href="#"
>OCTOBER 04 ISSUE</a
>
<img
class="img-fluid mb-1 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1530990/october-04-2019.jpg?w=360&h=480&q=90&f=7b78a39ae8c5b9ba4da7baab6105f018"
alt="Magazine"
/>
</div>
<h5 class="text-center w-100 bg-light py-3">
<a
class="text-center font-weight-bolder bg-light text-body py-2"
href="#"
>SEE ALL FEATURES ></a
>
</h5>
</section>
<section class="row col-12 col-md-9 container-fluid">
<div class="row col-12 pr-4">
<div class="col-4 col-md-6 border-bottom mb-3 pt-2">
<img
class="img-fluid float-right pr-2 ml-5"
src="img/N.png"
alt="N"
/>
</div>
<div class="col-8 col-md-6 mb-2">
<h5 class="py-3 font-weight-bold border-bottom text-left">
IN THE MAGAZINE
</h5>
</div>
</div>
<article class="col-12 col-md-4 pr-4">
<img
class="img-fluid mb-3 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1529343/fe-scotus-01-banner.jpg?w=466&h=311&q=90&f=57d80e9fc6403fdad7b3b77e1b1f682b"
alt="COVER"
/>
<div class="category position-relative d-block mb-3">
<a class="bg-news text-light px-2 py-2" href="#">COVER</a>
<a class="color-news px-2 py-2" href="#">POLITICS</a>
</div>
<h5 class="col-12 mb-3">
<a class="font-weight-bolder text-body" href="#"
>Three LGBTQ Cases Set to Test the Supreme Court's Conservative
Principles</a
>
</h5>
</article>
<article class="col-12 col-md-4 pr-4">
<img
class="img-fluid mb-3 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1528101/fe-anthropocene-01.jpg?w=466&h=311&q=90&f=b865e2814d95b55d2831e7faee0b2828"
alt="FEATURES"
/>
<div class="category position-relative d-block mb-3">
<a class="bg-news text-light px-2 py-2" href="#">FEATURES</a>
<a class="color-news px-2 py-2" href="#">WORLD</a>
</div>
<h5 class="col-12 mb-3">
<a class="font-weight-bolder text-body" href="#"
>Dramatic Photos Capture How Humans Have Changed the Earth</a
>
</h5>
</article>
<article class="col-12 col-md-4 pr-4">
<img
class="img-fluid mb-3 cursor-pointer w-100"
src="https://d.newsweek.com/en/full/1529301/per-markwarner-01-612590370-banner.jpg?w=466&h=311&l=43&t=43&q=90&f=85ee6d6312ff757128553f1cf5aa4e19"
alt="DOWNLOADS"
/>
<div class="category position-relative d-block mb-3">
<a class="bg-news text-light px-2 py-2" href="#">DOWNLOADS</a>
<a class="color-news px-2 py-2" href="#">POLITICS</a>
</div>
<h5 class="col-12 mb-3">
<a class="font-weight-bolder text-body" href="#"
>Senator Mark Warner Says Social Media's 'Wild, Wild West' is
Ending</a
>
</h5>
</article>
</section>
</div>
<div class="row d-lg-flex container-fluid mb-4">
<article class="col-12 col-md-3 pr-4">
<img