-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
953 lines (948 loc) · 69.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/e24c4ef6dd.js" crossorigin="anonymous"></script>
<title>Newsweek</title>
</head>
<body>
<header class="fixed-top">
<div class=" bg-red container-fluid">
<div class="row brand-header">
<div class="col-2 col-md-2 d-none col-lg-3 d-lg-flex col-lg-3 order-2 order-lg-1">
<span class="date">Wed, Oct 16, 2019</span>
</div>
<div class="col-4 col-md-5 col-lg-6 order-1 order-lg-2 logo">
<div class="brand">
<svg class="nav-logo" 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>
<div class="col-6 col-md-6 col-lg-3 order-2 d-flex flex-row-reverse box">
<a class="d-flex subscribe-btn red mr-0 ml-0" href="#">SUBSCRIBE ></a>
<a class="d-flex sign-btn ml-0" href="#">SIGN IN</a>
</div>
<div class="col-2 col-md-1 col-lg-2 order-3 d-lg-none pl-0 hamburger-wrapper ">
<a href="#" id="🍔" class="hamburger position-relative d-flex">
<span class="bar-1 pt-0 mt-0 position-absolute"></span>
<span class="bar-2"></span>
<span class="bar-3"></span>
</a>
</div>
</div>
</div>
<div class="separator"></div>
<nav class="navbar-expand-lg white" id="📜">
<div class="navbar-nav d-flex w-100 menu">
<div class="order-lg-1 nav-item mg-box">
<input class="w-100" type="text" placeholder="Search" value="">
<span class="mg-glass"></span>
</div>
<a class="nav-item nav-link border-rigth arrow" href="#">U.S.</a>
<a class="nav-item nav-link border-rigth arrow" href="#">World</a>
<a class="nav-item nav-link border-rigth arrow" href="#">Business</a>
<a class="nav-item nav-link border-rigth arrow" href="#">Tech & Science</a>
<a class="nav-item nav-link border-rigth arrow" href="#">Culture</a>
<a class="nav-item nav-link border-rigth arrow" href="#">Newsgeek</a>
<a class="nav-item nav-link border-rigth arrow" href="#">Sports</a>
<a class="nav-item nav-link border-rigth arrow" href="#">Health</a>
<a class="nav-item nav-link border-rigth arrow" href="#">Opinion</a>
<a class="nav-item nav-link border-rigth arrow" href="#">Vantage</a>
</div>
</nav>
</header>
<main class="holy-grial">
<div class="container-fluid">
<div class="row">
<div class=" col-12 col-md-5 col-lg-3 order-2 order-md-1">
<article class="featured-stories">
<h2 class="text-title">FEATURED STORIES</h2>
<div class="position-relative">
<img class="img" src="img/col-1/typhoon-hagibis-hits-japan.jpg" alt="">
<div class="position-absolute category-tag red"><span class="d-block">WORLD</span></div>
</div>
<h3><a class="links" href="#">Super Typhoon Hagibis Throttles Japan, Leaving at Least 33 Dead</a></h3>
<p>At least 33 people have died in Japan after Typhoon Hagibis —reportedly one of the most powerful storms to hit the area since the 1950s—tore across the country this weekend.</p>
</article>
<article class="featured-stories">
<div class="position-relative">
<img class="img" src="img/col-1/kipchoge.jpg" alt="">
<div class="position-absolute category-tag red"><span class="d-block">SPORTS</span></div>
</div>
<h3><a class="links" href="#">Paving the Way to 1:59:40: Eliud Kipchoge's Road to Marathon Fame</a></h3>
<p>The carefully-controlled conditions that allowed Kipchoge accomplish what was once believed to be impossible are also the reason it won't qualify as a world record.</p>
</article>
<article class="featured-stories">
<div class="position-relative">
<img class="img" src="img/col-1/electoral-college-2016-election-donald-trump-hillary-clinton.jpg" alt="">
<div class="position-absolute category-tag red"><span class="d-block">POLITICS</span></div>
</div>
<h3><a class="links" href="#">Study: Electoral College Heavily Favors Republicans in Close Elections</a></h3>
<p>The researchers concluded that Republicans will have a major advantage over Democrats in 2020 and beyond unless a policy change completely dissolves the Electoral College.</p>
</article>
<article class="featured-stories">
<div class="position-relative">
<img class="img" src="img/col-1/best-online-shops-2020.png" alt="">
<div class="position-absolute category-tag red"><span class="d-block">SURVEY</span></div>
</div>
<h3><a class="links" href="#">Best Online Shops 2020</a></h3>
<p>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="featured-stories">
<div class="position-relative">
<img class="img" src="img/col-1/newsweek-sep19.jpg" alt="">
<div class="position-absolute category-tag blue"><span class="d-block">SPONSORED INSIGHT</span></div>
</div>
<div class="sponsor">
<h2><a class="links" href="#">Which Global Universities are Leading the Way in 2019?</a></h2>
<p>The world is shrinking and the concept of a "global marketplace" has never been more appreciable. Which universities are best preparing tomorrow’s international thought leaders?</p>
</div>
</article>
<article class="featured-stories">
<div class="position-relative">
<img class="img" src="img/col-1/korea-university-college-engineering.jpg" alt="">
<div class="position-absolute category-tag blue"><span class="d-block">SPONSORED INSIGHT</span></div>
</div>
<div class="sponsor">
<h2><a class="links" href="#">Why You Should Be An Engineer & Why ABET Is Important to that Path.</a></h2>
<p>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>
</div>
</article>
</div>
<div class=" col-12 col-md-7 col-lg-5 order-1 order-md-2">
<article class="featured-storiestop-story ">
<h2 class="text-title">TOP STORY</h2>
<div class="position-relative">
<img class="img" src="img/col-2/syria.jpg" alt="">
<div class="position-absolute category-tag red"><span class="d-block" >WORLD</span></div>
</div>
<h3><a class="links" href="#">Hundreds of ISIS Affiliates Escape Syrian Prison Camp</a></h3>
<p>"We've won. We've beat ISIS and we've beat them badly and decisively," President Trump told reporters last week.</p>
<hr><h2>Defense Secretary, Trump Confirm Syrian Troop Withdrawal: 'Endless Wars!</h2><hr>
</article>
<section class="culture-stories container-fluid grey-box">
<h2 class="text-title w-100">CULTURE & TRAVEL</h2>
<div class="row">
<div class="col-6 col6-left">
<article class="travel-stories">
<img class="img-travel" src="img/col-2/crown-prince-naruhito-japan-his-future-wife-masako-owada-pose-photographs-traditional-japanese.jpg" alt=""/>
<div class="styled-text">
<h4><a class="links styled-text" href="#">Modern-Day Dynasties Still Ruling the World</a></h4>
<p>While many of the famed dynastic families of the world have died out or been replaced by democracies, there are a handful still ruling the roost.</p>
<span class="tag-grey">Business Travel</span>
</div>
</article>
</div>
<div class="col-6 col6-right">
<article class="travel-stories">
<img class="img-travel" src="img/col-2/grenade-head-figures.jpg" alt=""/>
<div class="styled-text">
<h4><a class="links" href="#">Urban Scrawl: The Written Word in Street Art</a></h4>
<p>Across the world the side walk is turned into an art installation with street art.</p>
<span class="tag-grey">Street Art</span>
</div>
</article>
</div>
<div class="col-6 col6-left">
<article class="travel-stories">
<img class="img-travel" src="img/col-2/publica-isrotel.jpg" alt=""/>
<div class="styled-text">
<h4><a class="styled-text" href="#">20 Firms Linked to 35 Percent of All Greenhouse Gas Emissions Since 1965</a></h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Earum officia corporis libero, voluptas minima obcaecati provident!</p>
<span class="tag-grey">Business Travel</span>
</div>
</article>
</div>
<div class="col-6 col6-right">
<article class="travel-stories">
<img class="img-travel" src="img/col-2/jonny-saifullah-jan.jpg" alt=""/>
<div class="styled-text">
<h4><a class="links styled-text" href="#">20 Firms Linked to 35 Percent of All Greenhouse Gas Emissions Since 1965</a></h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Earum officia corporis libero, voluptas minima obcaecati provident!</p>
<span class="tag-grey">Pakistan</span>
</div>
</article>
</div>
</div>
</section>
<section class="stories">
<h2 class="text-title">MORE STORIES</h2>
<article class="more-stories">
<div class="stories-wrapper d-flex">
<img class="img-more-stories" src="img/col-2/atatiana-jefferson.jpg" alt=""/>
<div class="info-stories">
<h2><a class="links" href="#">Black Woman Shot By Police in Her Home in Forth Worth, Texas</a></h2>
<p>Atatiana Jefferson was reportedly playing video games with her nephew and thought there was a potential trespasser outside. When she went to investigate, she was shot by a police officer.</p>
</div>
</div>
</article>
<article class="more-stories">
<div class="stories-wrapper d-flex">
<img class="img-more-stories" src="img/col-2/rudy-giuliani-donald-trump.jpg" alt=""/>
<div class="info-stories">
<h2><a class="links" href="#">Trump Remains Loyal to Giuliani</a></h2>
<p>"I know nothing about him being under investigation, as somebody said. I heard a report today– I can't imagine it," the president said in a Fox News interview.</p>
</div>
</div>
</article>
<article class="more-stories">
<div class="stories-wrapper d-flex">
<img class="img-more-stories" src="img/col-2/joe-biden-hunter-biden-video.jpg" alt=""/>
<div class="info-stories">
<h2><a class="links" href="#">Hunter Biden Steps Down From Chinese Board, Reects Trump Attacks</a></h2>
<p>He has vowed to cease all foreign work should his father, Joe Biden, be elected president in 2020.</p>
</div>
</div>
</article>
<article class="more-stories">
<div class="stories-wrapper d-flex">
<img class="img-more-stories" src="img/col-2/us-military-post-syria-border-turkey.jpg" alt=""/>
<div class="info-stories">
<h2><a class="links" href="#">Pelosi Accuses Trump of 'Trying to Make Lawlessness a Virtue'</a></h2>
<p>House Speaker Nancy Pelosi sent the president a clear message following a letter from the White House refusing to cooperate with the impeachment inquiry: "You are not above the law."</p>
</div>
</div>
</article>
<article class="more-stories">
<div class="stories-wrapper d-flex">
<img class="img-more-stories" src="img/col-2/lawmakers-presidential-candidates-attend-naacp-national-convention.jpg" alt=""/>
<div class="info-stories">
<h2><a class="links" href="#">Exclusive: Kurds Heard of Trump's Pullout on Twitter: "What Is This Sh*t?"</a></h2>
<p>Donald Trump's decision to withdraw U.S. troops from positions in Syria blindsided everyone.</p>
</div>
</div>
</article>
<article class="more-stories">
<div class="stories-wrapper d-flex">
<img class="img-more-stories" src="img/col-2/greta-thunberg.jpg" alt=""/>
<div class="info-stories">
<h2><a class="links" href="#">Warren Announces Fake Facebook Campaign to Test Disinformation Policies</a></h2>
<p>"Facebook holds incredible power to affect elections and our national debate," Warren tweeted. "They've decided to let political figures lie to you."</p>
</div>
</div>
</article>
<article class="more-stories">
<div class="stories-wrapper d-flex">
<img class="img-more-stories" src="img/col-2/california-gov-newsom-ca-attorney-gen-becerra-hold-news-conference-responding-trump-revoking.jpg" alt=""/>
<div class="info-stories">
<h2 class=""><a class="links" href="#">Greta Thunberg: Climate Strike Will Continue Till World Leaders Take Notice</a></h2>
<p>"The world is waking up and we are the change. And change is coming whether you like it or not," Thunberg said at a rally in Denver.</p>
</div>
</div>
</article>
<article class="more-stories">
<div class="stories-wrapper d-flex">
<img class="img-more-stories" src="img/col-2/jason-san-miguel.png" alt=""/>
<div class="info-stories">
<h2 class=""><a class="links" href="#">California Just Passed a Slate of New Gun Control Measures</a></h2>
<p>The NRA quickly condemned the move as an "assault on our Second Amendment rights in the Golden State."</p>
</div>
</div>
</article>
</section>
</div>
<div class=" col-12 col-md-12 col-lg-4 order-3">
<article class="opinion-stories">
<h2 class="text-title">OPINION</h2>
<div class="opinion-content d-flex">
<img class="hero-img" src="img/hero/diahann-billings-burford.png" alt="" />
<div class="info">
<h2>The NBA Is Bravely Defending Free Speech—And That's a Game Changer</h2>
<p>BY DIAHANN BILLINGS-BURFORD</p>
</div>
</div>
</article>
<hr>
<article class="opinion-stories">
<div class="opinion-content d-flex">
<img class="hero-img" src="img/hero/jennifer-weiss-wolf.png" alt="" />
<div class="info">
<h2>To All Men Enraged by AOC's Expensive Haircut: This Is How the Economy Bleeds Women Dry</h2>
<p>BY JENNIFER WEISS-WOLF</p>
</div>
</div>
</article>
<hr>
<article class="opinion-stories">
<div class="opinion-content d-flex">
<img class="hero-img" src="img/hero/henri-j-barkey.png" alt="" />
<div class="info">
<h2>You Don't Need a Crystal Ball to See the Disastrous Ramifications of Trump's Syria Decision</h2>
<p>BY HENRI J. BARKEY</p>
</div>
</div>
</article>
<hr>
<article class="opinion-stories">
<div class="opinion-content d-flex">
<img class="hero-img" src="img/hero/dana-gold.png" alt="" />
<div class="info">
<h2>Pelosi Can't Play a Political Game as Simple as Tic-Tac-Toe</h2>
<p>BY NEWT GINGRICH</p>
</div>
</div>
</article>
<hr>
<article class="opinion-stories">
<div class="opinion-content d-flex">
<img class="hero-img" src="img/hero/newt-gingrich.png" alt="" />
<div class="info">
<h2>Russia Has Dominated Europe's Gas for Years—Now It Covets Its Green Energy</h2>
<p>BY ARIEL COHEN</p>
</div>
</div>
</article>
<hr>
<article class="opinion-stories">
<div class="opinion-content d-flex">
<img class="hero-img" src="img/hero/ariel-cohen.png" alt="" />
<div class="info">
<h2>Trump Can Get Both Impeached and Re-Elected</h2>
<p>BY JOSHUA SPIVAK</p>
</div>
</div>
</article>
<h2 class="text-title">LATEST NEWS</h2>
<div class="latest-news">
<article class="news-stories">
<img class="img-news" src="img/col-3/pete-buttigieg.jpg" alt="" />
<h2 class="latest"><a class="links" href="#">Buttigieg Says Churches Shouldn't Be Punished for Being Anti-LGBTQ</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/scott-walker.jpg" alt="" />
<h2 class="latest"><a class="links" href="#">Former Wisconsin Governor Slammed for Tweet Attempting to Make Fun of AOC</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/los-angeles-chargers.jpg" alt="" />
<h2 class="latest"><a class="links" href="#">NFL SNF: Where to Watch Steelers vs Chargers, TV Channel, Live Stream, Odds</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/alabama-football.jpg" alt="" />
<h2 class="latest"><a class="links" href="#">College Football Rankings for Week 8 (10/13/19)</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/per-mattismarshall-02-858026108.jpg" alt="" />
<h2 class="latest"><a class="links" href="#">Schiff, Mattis Warn Trump: ISIS Already Rising in Syria</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/zelensky-trump.jpg" alt="" />
<h2 class="latest"><a class="links" href="#">Senator Praises Trump for Being 'Transparent' About Foreign Interference</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/file-photo-university-minnesota-sign.jpg" alt="" />
<h2 class="latest"><a class="links" href="#">Republican University Group Advertised With Flyer Joking About Rape</a></h2>
</article>
<article class="sponsor-stories col-md-6 col-lg-12 mx-auto">
<div class="position-relative">
<img class="img" src="img/col-1/newsweek-sep19.jpg" alt="">
<div class="position-absolute category-tag blue"><span class="d-block">SPONSORED INSIGHT</span></div>
</div>
<div class="sponsor">
<h2><a class="links" href="#">What Can a Degree in Public Health Do For You?</a></h2>
<p>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>
</div>
</article>
<article class="newsletter">
<div class="sign-up d-flex w-100">
<div class="newsweek-logo"></div>
<h3>SIGN UP FOR OUR NEWSLETTER</h3>
</div>
<a class="subscribe-button" href="#">SIGN UP ></a>
<h3 class="text-newsletter">Update your preferences »</h3>
</article>
<article class="sponsor-stories col-md-6 col-lg-12 mx-auto">
<div class="position-relative">
<img class="img" src="img/col-1/newsweek-sep19.jpg" alt="">
<div class="position-absolute category-tag blue"><span class="d-block">SPONSORED INSIGHT</span></div>
</div>
<div class="sponsor">
<h3><a class="links" href="#">Croatian Regions of Istria & Kvarner: Paradise in the Heart of Europe</a></h3>
<p>Responsible and sustainable tourism is paying significant social and economic dividends for these stunning Croatian coastal regions.</p>
</div>
</article>
</div>
</div>
</div>
<div class="grid-stories">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-md-3">
<article class="magazine-stories">
<div class="position-relative">
<img class="img-magazine-top" src="img/col-1/october-11-18-2019.jpg" alt=""/>
<div class="position-absolute category-tag ">
<h2 class="red mb-0"><span class="d-block">OCTOBER 18 ISSUE</span></h2></div>
</div>
<div class="category-tag"><span class="d-block">SEE ALL FEATURES</span></div>
</article>
</div>
<div class="col-12 col-md-9">
<div class="divider w-100 d-flex justify-content-center">
<div class="newsweek-logo-s"></div>
<span>IN THE MAGAZINE</span>
</div>
<div class="row">
<div class="col-12 col-md-4">
<article class="magazine-stories">
<img class="img-magazine" src="img/col-1/trump-impeachment-cover-come-get-me.jpg" alt=""/>
<div class="category">
<span>COVER</span>
<span>U.S</span>
</div>
<h2><a class="links" href="#">'Gleefully Defiant' Trump Spoils for Fight, But Will His Playbook Fail Him?</a></h2>
</article>
</div>
<div class="col-12 col-md-4">
<article class="magazine-stories">
<img class="img-magazine" src="img/col-2/coffee-rust.jpg" alt=""/>
<div class="category">
<span>FEATURES</span>
<span>U.S</span>
</div>
<h2><a class="links" href="#">Your Coffee Could Be Connected to Why Hondurans Are Fleeing to the Border</a></h2>
</article>
</div>
<div class="col-12 col-md-4">
<article class="magazine-stories">
<img class="img-magazine" src="img/col-3/per-africa-01-525609494-banner.jpg" alt="" />
<div class="category">
<span>PERISCOPE</span>
<span>WORLD</span>
</div>
<h2><a class="links" href="#">Trump's Message to Troubled Developing Countries? Figure it Out On Your Own</a></h2>
</article>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-3">
<article class="magazine-stories">
<img class="img-magazine" src="img/col-1/hor-moonshots-tinctorium-01-681734420.jpg" alt=""/>
<div class="category">
<span>NEW WORLD</span>
<span>CULTURE</span>
</div>
<h2><a class="links" href="#">How One Company is Making Blue Jeans Green</a></h2>
</article>
</div>
<div class="col-12 col-md-3">
<article class="magazine-stories">
<img class="img-magazine" src="img/col-2/cul-books-01-997638600.jpg" alt=""/>
<div class="category">
<span>DOWNTIME</span>
<span>CULTURE</span>
</div>
<h2><a class="links" href="#">21 Book to Curl Up with this Fall</a></h2>
</article>
</div>
<div class="col-12 col-md-3">
<article class="magazine-stories">
<img class="img-magazine" src="img/col-2/partingshot-merrittwever.jpg" alt=""/>
<div class="category">
<span>DOWNTIME</span>
<span>CULTURE</span>
</div>
<h2><a class="links" href="#">'Gleefully Defiant' Trump Spoils for Fight, But Will His Playbook Fail Him?</a></h2>
</article>
</div>
<div class="col-12 col-md-3">
<article class="magazine-stories">
<div class="position-relative">
<img class="img-magazine" src="img/col-3/burn-rage.jpg" alt=""/>
<div class="position-absolute category big-shots"><span class="white d-block">BIG SHOTS</span></div>
</div>
<h2><a class="links" href="#"></a>BURN WITH RAGE</h2>
</article>
</div>
</div>
</div>
</div>
<div class="grid-stories">
<div class="container-fluid">
<div class="divider w-100 d-flex justify-content-center">
<div class="newsweek-logo-s"></div>
<span>EDITOR PICK</span>
</div>
<div class="row">
<div class="col-12 col-md-6 col-lg-3 col-3-w">
<article class="magazine-stories">
<div class="position-relative">
<img class="img-magazine-pick" src="img/col-1/fraternity-house-berkeley.jpg" alt=""/>
<div class="position-absolute category-tag red"><span class="d-block">U.S.</span></div>
</div>
<h3><a class="links" href="#">University of Georgia Undergraduate Ran $1M Ponzi Scheme From Frat House</a></h3>
<p>Syed Arham Arbab, 22, admitted to defrauding 117 investors of thousands of dollars, and faces up to five years in prison.</p>
</article>
</div>
<div class="col-12 col-md-6 col-lg-3 col-3-w">
<article class="magazine-stories">
<div class="position-relative">
<img class="img-magazine-pick" src="img/col-2/xavier-dupont-de-ligonnes.jpg" alt=""/>
<div class="position-absolute category-tag red"><span class="d-block">NEWS</span></div>
</div>
<h3><a class="links" href="#">French Aristocrat Suspected of Murdering Family Eludes Authorities Again</a></h3>
<p>A DNA test quickly confirmed that a man detained in Glasgow on Friday evening was not Xavier Dupont de Ligonnès, who has been on the run since 2011.</p>
</article>
</div>
<div class="col-12 col-md-6 col-lg-3 col-3-w">
<article class="magazine-stories">
<div class="position-relative">
<img class="img-magazine-pick" src="img/col-2/larry-hogan.jpg" alt="" />
<div class="position-absolute category-tag red"><span class="d-block">POLITICS</span></div>
</div>
<h3><a class="links" href="#">Gov. Larry Hogan: From Nixon to Trump, a GOP Family's Impeachment Legacy</a></h3>
<p>Maryland governor's call to "get the facts" echoed his father, a former congressman who spent hours in hearings and at home poring over evidence as the Watergate scandal unfolded</p>
</article>
</div>
<div class="col-12 col-md-6 col-lg-3 col-3-w">
<article class="magazine-stories">
<div class="position-relative">
<img class="img-magazine-pick" src="img/col-3/wind-turbines-alternative-energy-health-concerns.jpg" alt=""/>
<div class="position-absolute category-tag red"><span class="d-block">BUSINESS</span></div>
</div>
<h3><a class="links" href="#">Wind and Solar Projects Placed on Hold in Iowa County</a></h3>
<p>An Iowa county has placed wind and solar energy projects on hold until October 2020</p>
</article>
</div>
</div>
</div>
</div>
<div class="grid-stories">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-md-6 col-lg-3 col-3-w">
<article class="magazine-stories">
<div class="position-relative">
<img class="img-magazine-pick" src="img/col-1/spiders.jpg" alt="">
<div class="position-absolute category-tag red"><span class="d-block">HEALTH</span></div>
</div>
<h3><a class="links" href="#">Arachnophobe Who Woke Up With Earache and Vertigo Finds Spider In His Ear</a></h3>
<p>"My initial reaction was just to get the bloody thing out of me as fast as possible," the man said.</p>
</article>
</div>
<div class="col-12 col-md-6 col-lg-3 col-3-w">
<article class="magazine-stories">
<div class="position-relative">
<img class="img-magazine-pick" src="img/col-2/bil-maher.jpg" alt="">
<div class="position-absolute category-tag red"><span class="d-block">POLITICS CULTURE</span></div>
</div>
<h3><a class="links" href="#">Bill Maher Says Center-Left Democrats Need 'Younger, Female-er' Candidate</a></h3>
<p>Bill Maher expressed his concern to Amy Klobuchar Friday night that Joe Biden is looking less and less likely to defeat President Donald Trump in 2020.</p>
</article>
</div>
<div class="col-12 col-md-6 col-lg-3 col-3-w">
<article class="magazine-stories">
<div class="position-relative">
<img class="img-magazine-pick" src="img/col-2/rimac-c-two.jpg" alt="">
<div class="position-absolute category-tag red"><span class="d-block">TECH & SCIENCE</span></div>
</div>
<h3><a class="links" href="#">Merritt Wever on Netflix's 'Unbelievable' and Not Torturing Herself</a></h3>
<p>"The big changes never happen in the way you see it in sci-fi movies where all of a sudden you have some revolutionary floating buildings or flying cars," Mate Rimac said.</p>
</article>
</div>
<div class="col-12 col-md-6 col-lg-3 col-3-w">
<article class="magazine-stories">
<div class="position-relative">
<img class="img-magazine-pick" src="img/col-3/dna-genetics-testing.jpg" alt="">
<div class="position-absolute category-tag red"><span class="d-block">HEALTH</span></div>
</div>
<h3><a class="links" href="#">DNA Testing Company Settles Health Care Fraud Allegations for $42.6 Million</a></h3>
<p>A genetics testing company settled out of court for $42.6 over allegations of healthcare fraud. </p>
</article>
</div>
</div>
</div>
</div>
<div class="slideshows-stories">
<div class="container-fluid">
<div class="divider w-100 d-flex justify-content-center">
<div class="newsweek-logo-s"></div>
<span>FEATURED SLIDESHOWS</span>
</div>
<div class="row">
<div class="col-12 col-md-4">
<article class="slideshow-stories">
<div class="position-relative">
<img class="img-slideshow" src="img/col-1/nycc-2019-best-cosplay-augustus-st-cloud.jpg" alt=""/>
<div class="position-absolute category-tag red"><div class="d-block slide-box p-0"><span>40</span></div></div>
</div>
<h2><a class="links" href="#">Our Cosplay Favorites from NYCC 2019</a></h2>
</article>
</div>
<div class="col-12 col-md-4">
<article class="slideshow-stories">
<div class="position-relative">
<img class="img-slideshow" src="img/col-2/justin-hailey-bieber-wedding.jpg" alt="">
<div class="position-absolute category-tag red"><div class="d-block slide-box p-0"><span>18</span></div></div>
</div>
<h2><a class="links" href="#">Hailey and Justin Bieber Wedding Pictures: Candid Photos from the Big Day</a></h2>
</article>
</div>
<div class="12 col-md-4">
<article class="slideshow-stories">
<div class="position-relative">
<img class="img-slideshow" src="img/col-3/muir-pass-great-alone.jpg" alt="">
<div class="position-absolute category-tag red"><div class="d-block slide-box p-0"><span>7</span></div></div>
</div>
<h2><a class="links" href="#">The Great Alone: Walking the Pacific Crest Trail</a></h2>
</article>
</div>
</div>
<div class="row">
<div class="col-12 col-md-4">
<article class="slideshow-stories">
<div class="position-relative">
<img class="img-slideshow" src="img/col-1/galapagos-cerro-brujo.jpg" alt="" >
<div class="position-absolute category-tag red"><div class="d-block slide-box p-0"><span>4</span></div></div>
</div>
<h2><a class="links" href="#">Cruise the Galapagos While Conserving Wildlife Found Nowhere Else</a></h2>
</article>
</div>
<div class="col-12 col-md-4">
<article class="slideshow-stories">
<div class="position-relative">
<img class="img-slideshow" src="img/col-2/still-2-eop.jpg" alt="">
<div class="position-absolute category-tag red"><div class="d-block slide-box p-0"><span>8</span></div></div>
</div>
<h2><a class="links" href="#">The New Documentary Trying to Save the Most Trafficked Mammals in the World</a></h2>
</article>
</div>
<div class="col-12 col-md-4">
<article class="slideshow-stories">
<div class="position-relative">
<img class="img-slideshow" src="img/col-3/lancaster-meeting-house.jpg" alt="">
<div class="position-absolute category-tag red"><div class="d-block slide-box p-0"><span>11</span></div></div>
</div>
<h2><a class="links" href="#">American Masterpieces: Singular Expressions of National Genius</a></h2>
</article>
</div>
</div>
</div>
</div>
<div class="item-us-stories">
<div class="container-fluid">
<hr>
<div class="w-100"><h2 class="text-news red">U.S.</h2></div>
<div class="row">
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-1/rashida-tlaib.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-2/navy-birthday-history-quotes.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-md-4">
<div class="row">
<article class="news-stories news-stories-first no-border">
<div class="stories-wrapper d-flex">
<img class="img-news" src="img/col-3/cat.jpg" alt="">
<div class="info-stories">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</div>
</div>
</article>
<article class="news-stories">
<div class="stories-wrapper d-flex">
<img class="img-news" src="img/col-3/peta-circus-protest.jpg" alt="">
<div class="info-stories">
<h2><a class="links" href="#">Old Water Fire Update: Evacuations Ordered in San Bernardino</a></h2>
</div>
</div>
</article>
<article class="news-stories">
<div class="stories-wrapper d-flex">
<img class="img-news" src="img/col-3/lancaster-meeting-house.jpg" alt="">
<div class="info-stories">
<h2><a class="links" href="#">Fox Judge: Impeachment Inquiry 'Consistent With the Rules' That GOP Signed</a></h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
<div class="item-world-stories">
<div class="container-fluid">
<hr class="hr-w-100">
<div class="w-100"><h2 class="text-news red">World</h2></div>
<div class="row">
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-1/mark-esper.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-2/bts.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<div>
<article class="news-stories news-stories-first">
<img class="img-news" src="img/col-3/sdf-isis-al-hol-camp.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/classroom-college-higher-education.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/mate-rimac.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
</div>
</div>
</div>
</div>
</div>
<div class="item-business-stories">
<div class="container-fluid">
<hr class="hr-w-100">
<div class="w-100"><h2 class="text-news red">Business</h2></div>
<div class="row">
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-1/trump-erdogan-shake-hands.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-2/el-paso-vigil-held-outside-nra-headquarters.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<div>
<article class="news-stories news-stories-first">
<img class="img-news" src="img/col-3/874567414.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/donald-trump.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/nervos-moonshot-kevin-wang.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
</div>
</div>
</div>
</div>
</div>
<div class="item-tech-stories">
<div class="container-fluid">
<hr class="hr-w-100">
<div class="w-100"><h2 class="text-news red">Tech & Science</h2></div>
<div class="row">
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-1/chuck-hagel.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-2/milky-way-nebula.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<div>
<article class="news-stories news-stories-first">
<img class="img-news" src="img/col-3/money-saving-apps-phone.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/florida-key-deer-hurricane-irma.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/mate-rimac.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
</div>
</div>
</div>
</div>
</div>
<div class="item-culture-stories">
<div class="container-fluid">
<hr class="hr-w-100">
<h2 class="w-100 text-news red">Culture</h2>
<div class="row">
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-1/lodge-49-season-2-dud-pool.jpg" alt="" />
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-2/gemini-man-deaging.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<div>
<article class="news-stories news-stories-first">
<img class="img-news" src="img/col-3/eating-through-oaxaca-city-best-restaurants-bars-try.png" alt="" />
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/walking-dead-10x2-alpha-lydia.jpg" alt="" />
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/big-mouth-season-3-nathan-fillion.png" alt="" />
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
</div>
</div>
</div>
</div>
</div>
<div class="item-news-section">
<div class="container-fluid">
<h2 class="w-100 text-news red border-top">Sports</h2>
<div class="row">
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-1/scott-brosius-1998-world-series-mvp.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<article class="pick-stories">
<img class="img-slideshow" src="img/col-2/tottenham-hotspur-stadium-nfl-london.jpg" alt="">
<h3><a class="links" href="#">Tlaib: Democrats Had 'Serious Conversations' on Detaining Trump Officials</a></h3>
</article>
</div>
<div class="col-12 col-md-4">
<div>
<article class="news-stories news-stories-first">
<img class="img-news" src="img/col-3/2016-world-series-cubs-indians.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/rugby-world-cup.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
<article class="news-stories">
<img class="img-news" src="img/col-3/lewis-hamilton-formula-one.jpg" alt="">
<h2><a class="links" href="#">Tesla Warns Drivers to Charge Cars Before California Blackout</a></h2>
</article>
</div>
</div>
</div>
</div>
</div>
<div class="promo-section">
<div class="row">
<div class="col-12 col-lg-7">
<h2 class="w-100 text-news red bg-white">SUBSCRIBE</h2>
<div class="subscribe-section">
<div class="subscribe-block grey d-flex flex-row">
<div class="row ">
<div class="col-12 col-md-5 col-lg-5 img-magazine-thumb">
<div class="magazine">
<div class="magazine-wrapper">
<img class="img-mini-magazine" src="https://d.newsweek.com/en/full/1531488/october-11-18-2019.jpg" alt="">
<img class="img-mini-magazine front" src="https://d.newsweek.com/en/full/1540951/november-08-15-2019.jpg" alt="">
</div>
</div>
</div>
<div class="col-12 col-md-7 col-lg-7 info-subscribe">
<h2>In-depth Stories You Don't See Elsewhere About Topics You Want to Read!</h2>
<p>All Access + Weekly Delivery.<br> Choose A Membership That's Perfect for You!</p>
<a class="subscribe-button bg-red" href="#">SUBSCRIBE ></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-lg-5 d-flex flex-column">
<h2 class="w-100 text-news red">NEWSLETTER</h2>
<div class="container-fluid">
<div class="row d-flex overflow-hidden" >
<div class="col-12 col-md-3 col-lg-6 newsletter-r">
<div class="img-newsletter w-100"></div>
</div>
<div class="col-12 col-md-9 .c-78 col-lg-6 newsletter-l">
<div class="subscribe-block hack border-grey">
<h2>The Starting 5</h2>
<p>Take back your inbox. Sign up for our newsletter and start making sense of the world around you.</p>
<a class="subscribe-button bg-red" href="#">SIGN UP ></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="container-fluid p-4">
<div class="row border-bottom mt-3 mb-3">
<div class="col-12 col-md-9 text-footer d-md-flex align-end">
<div class="brand-footer ml-0">
<svg class="footer-logo" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 395.6 60" style="enable-background: new 0 0 395.6 60;" xml:space="preserve"><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>
<span >© 2019 NEWSWEEK</span>
</div>
<div class="col-12 col-md-3">
<div class="social-buttons">
<i class="fab fa-facebook-square"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-tumblr"></i>
<i class="fab fa-linkedin-in"></i>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-7 text-footer">
<a href="#" >About Us</a>
<a href="#" >Corrections</a>
<a href="#" >Contact Us</a>
<a href="#" >Editorial Guidelines</a>
<a href="#" >Advertise</a>
<a href="#" >Copyright</a>
<a href="#" >Terms & Conditions</a>
<a href="#" >Privacy Policy</a>
<a href="#" >Cookie Policy</a>
<a href="#" >Terms of Sale</a>
<a href="#" >Archive</a>
<a href="#" >Announcements</a>
<a class="border-0" href="#" >Consent preferences</a>
</div>x
<div class="col-12 col-lg-4 mx-auto text-lg-center text-footer">
<a class="font-weight-bold" href="#">Editions:</a>
<a href="#">U.S. Edition</a>
<a href="#">日本</a>
<a href="#">한국</a>
<a href="#">Pakistan</a>
<a href="#">Polska</a>
<a href="#">România</a>
</div>
</div>
</footer>
</div>
</main>
<script src="js/app.js"></script>
</body>
</html>