-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1530 lines (1443 loc) · 81.9 KB
/
index.html
File metadata and controls
1530 lines (1443 loc) · 81.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" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Using Bootstrap</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="navbar-top-sticky">
<img src="img/logo.png" height="20" class="d-inline-block align-top" alt="newsweek" />
<form class="nav-form">
<button class="btn nav-form__signin" type="submit">SIGN IN</button>
<button class="btn nav-form__subscribe" type="submit">SUBSCRIBE</button> <button
class="btn nav-form__menu">☰</button>
</form>
</header>
<main>
<div class="navbar-desktop">
<div class="navbar-desktop__head">
<span class="navbar-desktop__date" id="demo"></span> <img src="img/logo.png" height="60" alt="newsweek" />
<form class="nav-form">
<button class="btn nav-form__signin" type="submit">SIGN IN</button>
<button class="btn nav-form__subscribe" type="submit">SUBSCRIBE</button>
</form>
</div>
<nav class="navbar-desktop__white">
<ul class="navbar-desktop__nav">
<li><a href="#" class="navbar-desktop__link">U.S.</a></li>
<li><span></span></li>
<li><a href="#" class="navbar-desktop__link">World</a></li>
<li><span></span></li>
<li><a href="#" class="navbar-desktop__link">Business</a></li>
<li><span></span></li>
<li><a href="#" class="navbar-desktop__link">Tech & Science</a></li>
<li><span></span></li>
<li><a href="#" class="navbar-desktop__link">Culture</a></li>
<li><span></span></li>
<li><a href="#" class="navbar-desktop__link">Newgeek</a></li>
<li><span></span></li>
<li><a href="#" class="navbar-desktop__link">Sports</a></li>
<li><span></span></li>
<li><a href="#" class="navbar-desktop__link">Opinion</a></li>
<li><span></span></li>
<li><a href="#" class="navbar-desktop__link">Vantage</a></li>
<li><input type="search" id="search" placeholder="Search" /></li>
</ul>
<div class="navbar-desktop__nav-after"></div>
</nav>
</div>
<div class="main container-fluid position-relative">
<div id="first-content" class="row mb-3">
<div class="col-lg-9 col-md-12">
<div class="row">
<!-- Features Story -->
<div class="col-lg-5 col-md-6 order-2 order-md-1 position-relative" id="featured-story">
<h6 class="text-uppercase text-muted font-weight-bold">featured stories</h6>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1511786/newsweek-momentum-awards-2019.png?w=397&h=265&q=90f=b5bee11f8b144487ff291880f4d318be"
class="card-img " alt="...">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">Analysis</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">The Newsweek Momentum Awards</h5>
<p class="card-text">The Newsweek Momentum Awards will recognize five individuals around the globe, as
well as one city, which will be chosen as the "smartest city in the world."</p>
</div>
</div>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1520601/trump-tax-cuts.jpg?w=397&h=265&q=90&f=2c400a983fbb8af4dc070d239e07ee41"
class="card-img" alt="...">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">Analysis</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">Are Republicans Underfunding the IRS to Help Corporations
Pay Less?</h5>
<p class="card-text">"Cutting budgets is one way to handicap an agency without eliminating it
altogether," said Bridget Stomberg, an associate professor of accounting at the Indiana University
Kelley School of Business.</p>
</div>
</div>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1520417/iran-tanker-uk-navy-gibraltar.jpg?w=397&h=265&q=90&f=7381e53c17e405a4913776a7640f1faa"
class="card-img" alt="...">
<div class="card-img-overlay p-0 position-absolute fixed-bottom ">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">World</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">Iran Says All 'Enemies Must Leave Region' as U.K. Releases
Oil Tanker</h5>
<p class="card-text">Just hours before a judge in U.K.-ruled Gibraltar ordered the release of Iran's
Grace 1 supertanker, the Iranian navy commander warned an "Islamic maritime resistance" was being
formed.</p>
</div>
</div>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1511669/spot-im-logo.png?w=397&h=265&q=90&f=fe63931482a6ab2a1825bd5559fc3c72"
class="card-img" alt="...">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">Editor's note</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">To Our Readers:</h5>
<p class="card-text">We always want to hear from you, and to make that easier, we've implemented a new
commenting forum. Take a look at the bottom of Newsweek articles. Spot.IM is a tool that helps
readers respond to our stories and communicate with one another—and with us. Ask us a question,
embed a GIF, point out a mistake. Be civil and respectful, please. And most important: Be in touch.
</p>
</div>
</div>
</div>
<!-- TOP Story -->
<div class="col-lg-7 col-md-6 order-1 order-md-2 position-relative overflow-auto" id="top-story">
<h6 class="text-uppercase text-muted font-weight-bold">top story</h6>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1520367/stock-market.jpg?w=591&h=364&q=90&f=917b84cb4761f06b3476d2a602942b9f"
class="card-img" alt="...">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">U.S.</h5>
</div>
</div>
<div class="card-body p-0 mt-2">
<h5 class="card-title font-weight-bold h4">Former Treasury Secretary Warns of Economic Recession</h5>
<p class="card-text">With federal interest rates already low and President Donald Trump launching
trade disputes with allies and adversaries alike, "it's hard for people to have confidence," former
Treasury Secretary Laurence Summers told CNN.</p>
</div>
</div>
<!-- Culture Story -->
<div id="culture-story" class="position-relative">
<h6 class="text-uppercase text-black-50 font-weight-bold p-2 m-0">top story</h6>
<div class="row">
<div class="col-lg-6 col-md-6 pr-2">
<div class="card border-0 bg-transparent">
<img
src="https://d.newsweek.com/en/full/1520569/glow-worm-cave.jpg?w=397&h=265&f=6533d10beeef8a86208582b1038722f7"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Underground: The Most Beautiful Caves in the World</h5>
<p class="card-text">Caves have an almost primal appeal—they hold the secrets to our past and
are the last vestige of exploration.</p>
<div class="badge p-0">
<a href="#" class="d-inline-block py-1 px-2 mr-2 mb-2">Caves</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 pl-2 col-md-6">
<div class="card border-0 bg-transparent">
<img
src="https://d.newsweek.com/en/full/1520047/little-girl-blue-armchair.jpg?w=397&h=265&f=a94b4ee17bbd54d1005ce4c2011755ee"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">American Masterpieces: Singular Expressions of National Genius</h5>
<p class="card-text">The architecture, paintings and monuments that have shaped American art
throughout the ages.</p>
<div class="badge p-0">
<a href="#" class="d-inline-block py-1 px-2 mr-2 mb-2">Art</a>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 pr-2 col-md-6">
<div class="card border-0 bg-transparent">
<img
src="https://d.newsweek.com/en/full/1520174/rwanda-gorilla.jpg?w=397&h=265&f=9ff104554aedd4fcfd07774554aed070"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">An Eco-Gorilla Opens in Rwanda</h5>
<p class="card-text">Rwanda is doubling down in the preservation of its mountain gorillas with
the opening of the new Singita Volcanoes National Park property.</p>
<div class="badge p-0">
<a href="#" class="d-inline-block py-1 px-2 mr-2 mb-2">Conservation</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 pl-2 col-md-6">
<div class="card border-0 bg-transparent">
<img
src="https://d.newsweek.com/en/full/1520012/bike-tour-desert.jpg?w=397&h=265&f=5a42d45ac9701cd90f3a7bfcc694427d"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">The 1990s: The Golden Age of Travel?</h5>
<p class="card-text">Modern-day social media is hampering our travels and the ability to truly
experience a new place. Johnny Bealby reminisces about the time before cellphones.</p>
<div class="badge p-0">
<a href="#" class="d-inline-block py-1 px-2 mr-2 mb-2">Africa</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- More Stories -->
<div id="more-stories">
<h6 class="text-uppercase text-black-50 font-weight-bold">more stories</h6>
<div class="clearfix py-3 border-top">
<img
src="https://d.newsweek.com/en/full/1520477/china-military-intervene-hong-kong.jpg?w=135&h=90&f=5f17bd9b072c3da725ef168e2924f30a"
class="img-thumbnail float-left border-0 mr-3 mb-2 p-0" alt="...">
<h5 class="text-body font-weight-bold">China Says It Has 'Power' to End Hong Kong Protests, Troops
Seen Near City</h5>
<p>China's U.K. ambassador warned "foreign forces" to "not misjudge the situation and go down the
wrong path, otherwise, they will lift the stone only to drop it on their own feet"</p>
</div>
<div class="clearfix py-3 border-top">
<img
src="https://d.newsweek.com/en/full/1520267/jeffrey-epstein-suicide-autopsy.jpg?w=135&h=90&f=2e08908434cde3e456ae5733728cfb86"
class="img-thumbnail float-left border-0 mr-3 mb-2 p-0" alt="...">
<h5 class="text-body font-weight-bold">Epstein Autopsy Finds Bone Break, 'Questions About
Strangulation': Report</h5>
<p>The autopsy of disgraced financier Jeffrey Epstein reportedly found a broken neck bone that can
fracture during homicides by strangulation.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Opinion -->
<div class="col-lg-3 col-md-12 order-3 order-md-3 position-relative overflow-auto" id="opinion">
<h6 class="text-uppercase text-muted font-weight-bold">opinion</h6>
<div class="mb-5 position-relative" id="opinion-items">
<div class="card pb-3 border-top-0 border-right-0 border-left-0 opinion-item">
<div class="row no-gutters">
<div class="col-auto position-relative wrap">
<img
src="https://d.newsweek.com/en/full/1520638/ana-lucia-araujo.png?w=63&h=63&f=c16018c7da979ee3bd7c5111f975cb56"
class="card-img d-block" alt="...">
</div>
<div class="col-8">
<div class="card-body pr-0 py-0 pl-2">
<h6 class="card-title font-weight-bolder mb-0">No, Confederate Monuments Don't Preserve History.
They Manipulate It</h6>
<p class="card-text mt-1 font-weight-bold">BY ANA LUCIA ARAUJO</p>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-top-0 border-right-0 border-left-0 opinion-item">
<div class="row no-gutters">
<div class="col-auto mr-2 position-relative wrap">
<img
src="https://d.newsweek.com/en/full/109320/peter-roff.png?w=63&h=63&f=5443b63addeb4ca99e986c1234ecae37"
class="card-img d-block" alt="PETER ROFF">
</div>
<div class="col-8">
<div class="card-body pr-0 py-0 pl-2">
<h6 class="card-title font-weight-bolder mb-0">No Democrat Can Defeat Trump—but the Trade War With
China Might</h6>
<p class="card-text mt-1 font-weight-bold">BY PETER ROFF</p>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-top-0 border-right-0 border-left-0 opinion-item">
<div class="row no-gutters">
<div class="col-auto mr-2 position-relative wrap">
<img
src="https://d.newsweek.com/en/full/1520829/omolara-thomas-uwemedimo.png?w=63&h=63&f=28c188b42669dd957b05652bcd637feb"
class="card-img d-block" alt="OMOLARA THOMAS UWEMEDIMO">
</div>
<div class="col-8">
<div class="card-body pr-0 py-0 pl-2">
<h6 class="card-title font-weight-bolder mb-0">The Public Charge Rule Threatens the Health of Every
Person in America</h6>
<p class="card-text mt-1 font-weight-bold">BY OMOLARA THOMAS UWEMEDIMO</p>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-top-0 border-right-0 border-left-0 opinion-item">
<div class="row no-gutters">
<div class="col-auto mr-2 position-relative wrap">
<img
src="https://d.newsweek.com/en/full/109198/lee-habeeb.png?w=63&h=63&f=dd1164c722d99b834fc2f3f410f433d4"
class="card-img d-block" alt="LEE HABEEB">
</div>
<div class="col-8">
<div class="card-body pr-0 py-0 pl-2">
<h6 class="card-title font-weight-bolder mb-0">God's Garage Is Giving Away Much More Than Free Cars
</h6>
<p class="card-text mt-1 font-weight-bold">BY LEE HABEEB</p>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-top-0 border-right-0 border-left-0 opinion-item">
<div class="row no-gutters">
<div class="col-auto mr-2 position-relative wrap">
<img
src="https://d.newsweek.com/en/full/106967/naveed-jamali.png?w=63&h=63&f=f34ce1bc9ce0ad82fa6c7bf98c87d41e"
class="card-img d-block" alt="NAVEED JAMALI">
</div>
<div class="col-8">
<div class="card-body pr-0 py-0 pl-2">
<h6 class="card-title font-weight-bolder mb-0">It's Time to Turn America's Profiling Arsenal on
White Supremacists</h6>
<p class="card-text mt-1 font-weight-bold">BY NAVEED JAMALI</p>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-top-0 border-right-0 border-left-0 opinion-item">
<div class="row no-gutters">
<div class="col-auto mr-2 position-relative wrap">
<img
src="https://d.newsweek.com/en/full/1520225/jamie-rappaport-clark.png?w=63&h=63&f=d475773154fafe8daed4276bf6705e5f"
class="card-img d-block" alt="NAVEED JAMALI">
</div>
<div class="col-8">
<div class="card-body pr-0 py-0 pl-2">
<h6 class="card-title font-weight-bolder mb-0">The Trump Administration Is Pushing Wildlife to the
Brink of Extinction</h6>
<p class="card-text mt-1 font-weight-bold">BY JAMIE RAPPAPORT CLARK</p>
</div>
</div>
</div>
</div> <!-- End of Card -->
</div>
<div class="mb-5" id="latest-news">
<h6 class="text-uppercase text-black-50 font-weight-bold pb-3 mb-0">latest news</h6>
<div class="card pb-3 border-0 latest-news-item">
<div class="row no-gutters">
<div class="wrap col-auto col-lg-5">
<img
src="https://d.newsweek.com/en/full/1334219/daytona-500-who-lead.jpg?w=397&h=265&f=3e9f9b3b1bcae7f9919a5fea9a921703"
class="card-img" alt="Thrash Metal Band Slayer Pulled as Sponsor of NASCAR Car">
</div>
<div class="col-6 col-md-7 col-lg-7">
<div class="card-body pr-0 py-0 pl-3">
<h5 class="card-title">Thrash Metal Band Slayer Pulled as Sponsor of NASCAR Car</h5>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-right-0 border-bottom-0 border-left-0 latest-news-item">
<div class="row no-gutters">
<div class="wrap col-auto col-lg-5">
<img
src="https://d.newsweek.com/en/full/1520917/rice-university.jpg?w=397&h=265&f=730cc072880864300cc1c7d454844f89"
class="card-img" alt="Racist, Anti-Immigrant Flyer Turns Up at Rice University">
</div>
<div class="col-6 col-md-7 col-lg-7">
<div class="card-body pr-0 py-0 pl-3">
<h5 class="card-title">Racist, Anti-Immigrant Flyer Turns Up at Rice University</h5>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-right-0 border-bottom-0 border-left-0 latest-news-item">
<div class="row no-gutters">
<div class="col-auto col-lg-5 wrap">
<img
src="https://d.newsweek.com/en/full/1520915/easy-rider.jpg?w=397&h=265&f=13e79700329465ba006a790efe029de6"
class="card-img" alt="From 'Easy Rider' to 'Ulee's Gold,' the Peter Fonda's Best Performances">
</div>
<div class="col-6 col-md-7 col-lg-7">
<div class="card-body pr-0 py-0 pl-3">
<h5 class="card-title">From 'Easy Rider' to 'Ulee's Gold,' the Peter Fonda's Best Performances</h5>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-right-0 border-bottom-0 border-left-0 latest-news-item">
<div class="row no-gutters">
<div class="col-auto col-lg-5 wrap">
<img
src="https://d.newsweek.com/en/full/1520914/girl-shooting-gun.jpg?w=397&h=265&f=d6584ec3c527b404f6f0f1e2b6d5c00a"
class="card-img" alt="NRA Says New Law Would Take Away Rifles From '10-Year-Old Little Girls'">
</div>
<div class="col-6 col-md-7 col-lg-7">
<div class="card-body pr-0 py-0 pl-3">
<h5 class="card-title">NRA Says New Law Would Take Away Rifles From '10-Year-Old Little Girls'</h5>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-right-0 border-bottom-0 border-left-0 latest-news-item">
<div class="row no-gutters">
<div class="col-auto col-lg-5 wrap">
<img
src="https://d.newsweek.com/en/full/1504467/gloria-vanderbilt-anderson-cooper.jpg?w=397&h=265&f=3b9b9955b2497a3d22894b4d64ddff80"
class="card-img" alt="Clip of Anderson Cooper and Stephen Colbert Discussing Grief Goes Viral">
</div>
<div class="col-6 col-md-7 col-lg-7">
<div class="card-body pr-0 py-0 pl-3">
<h5 class="card-title">Clip of Anderson Cooper and Stephen Colbert Discussing Grief Goes Viral</h5>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-right-0 border-bottom-0 border-left-0 latest-news-item">
<div class="row no-gutters">
<div class="col-auto col-lg-5 wrap">
<img
src="https://d.newsweek.com/en/full/1520911/el-paso-mass-shooting-memorial.jpg?w=397&h=265&f=1f6c1e0d1ddd4064a44b9b395675fb05"
class="card-img" alt="House Republican Mass Shooting Strategy Revealed In Leaked Memo: Blame Left">
</div>
<div class="col-6 col-md-7 col-lg-7">
<div class="card-body pr-0 py-0 pl-3">
<h5 class="card-title">House Republican Mass Shooting Strategy Revealed In Leaked Memo: Blame Left
</h5>
</div>
</div>
</div>
</div> <!-- End of Card -->
<div class="card py-3 border-right-0 border-bottom-0 border-left-0 latest-news-item">
<div class="row no-gutters">
<div class="col-auto col-lg-5 wrap">
<img
src="https://d.newsweek.com/en/full/1520907/russia-us-politics-espionage.jpg?w=397&h=265&f=198b1e27b6f7146e3c7079ba0f1df8bd"
class="card-img" alt="
Senator Wyden Slams Republican FEC Commissioners for Blocking Probe of NRA">
</div>
<div class="col-6 col-md-7 col-lg-7">
<div class="card-body pr-0 py-0 pl-3">
<h5 class="card-title">
Senator Wyden Slams Republican FEC Commissioners for Blocking Probe of NRA</h5>
</div>
</div>
</div>
</div> <!-- End of Card -->
</div> <!-- End of Latest News -->
<div class="card" id="sign-up-box">
<div class="card-body p-0 d-flex flex-column">
<a class="navbar-brand mr-0 p-0 mb-3" href="#">
<img src="https://g.newsweek.com/www/images/logo-n1.svg" width="30" height="30"
class="d-inline-block align-top" alt="">
Sign up for our Newsletter
</a>
<button type="button" class="btn btn-secondary rounded-0 text-uppercase font-weight-bolder w-50 mb-2">Sign
up</button>
<a href="#" class="text-decoration-none">Update your preferences</a>
</div>
</div>
</div>
<!-- End of Opinion -->
</div>
<div id="page-bottom" class="pt-3 mb-4 position-relative">
<div id="nw-in-the-mag" class="mb-4">
<div class="row" id="first-row">
<div class="col-sm-3">
<div class="card text-body border-0 pb-4" id="inthemag-left">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1518227/cover-august-16-23-2019.jpg?w=290&h=387&q=90&f=84df2897d50a1312051924bd61365aa3"
class="card-img " alt="...">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">AUGUST 23 ISSUE</h5>
</div>
</div>
<div class="card-body px-0 pb-0 pt-2">
<h5 class="card-title font-weight-bold m-0 mb-2 h4">See All Features</h5>
</div>
</div>
</div>
<div class="col-sm-9" id="fr-right">
<div
class="mag-title mx-auto d-flex justify-content-center align-items-center text-uppercase font-weight-bolder pb-2 mb-3">
<img src="https://g.newsweek.com/www/images/logo-n1.svg" width="29" height="28" alt=""
class="d-block mr-2">
IN THE MAGAZINE
</div>
<div class="row mx-n3">
<article class="col-sm-4">
<div class="card rounded-0 border-0">
<picture class="image-wrap">
<img
src="https://d.newsweek.com/en/full/1517277/fe-debt-01-963067608-use-banner.jpg?w=466&h=311&q=90&f=3cb92c21885460860afba765e1e468b8"
class="card-img-top fr-image" width="466" alt="Student Debt Crisis">
</picture>
<div class="card-body p-0">
<div class="card-category my-2">
<a href="#" class="card-link text-uppercase d-inline-block mag-cat">cover</a>
<a href="#" class="card-link text-uppercase ml-0 d-inline-block cat">u.s</a>
</div>
<h5 class="card-title mb-4 mb-md-0">The Truth About America's Student Debt Crisis</h5>
</div>
</div>
</article>
<article class="col-sm-4">
<div class="card rounded-0 border-0">
<picture class="image-wrap">
<img
src="https://d.newsweek.com/en/full/1517279/fe-debt-02-1156439302.jpg?w=466&h=311&q=90&f=030988ad1c55ff3f3ee1a58c5d9e9cd0"
class="card-img-top fr-image" width="466" alt="Student Debt Crisis">
</picture>
<div class="card-body p-0">
<div class="card-category my-2">
<a href="#" class="card-link text-uppercase d-inline-block mag-cat">features</a>
<a href="#" class="card-link text-uppercase ml-0 d-inline-block cat">education</a>
</div>
<h5 class="card-title mb-4 mb-md-0">How to Avoid the Student Debt Crisis</h5>
</div>
</div>
</article>
<article class="col-sm-4">
<div class="card rounded-0 border-0">
<picture class="image-wrap">
<img
src="https://d.newsweek.com/en/full/1517399/fe-russell-moore-01.jpg?w=466&h=311&q=90&f=49eb1979aba7d486f8158b76d31fcb5b"
class="card-img-top fr-image" width="466" alt="Student Debt Crisis">
</picture>
<div class="card-body p-0">
<div class="card-category my-2">
<a href="#" class="card-link text-uppercase d-inline-block mag-cat">features</a>
<a href="#" class="card-link text-uppercase ml-0 d-inline-block cat">politics</a>
</div>
<h5 class="card-title mb-4 mb-md-0">The Rebel Evangelical</h5>
</div>
</div>
</article>
</div>
</div>
</div>
<div class="row pt-md-4" id="second-row">
<div class="col-sm-3">
<div class="card rounded-0 border-0">
<picture class="image-wrap">
<img
src="https://d.newsweek.com/en/full/1517332/per-art-noticing-01-use-banner.jpg?w=466&h=311&q=90&f=bbb6bab0e2c2bf659a9aea2a0881d475"
class="card-img-top fr-image" width="466" alt="Cracking the Code to Entrepreneurial Success">
</picture>
<div class="card-body p-0">
<div class="card-category my-2">
<a href="#" class="card-link text-uppercase d-inline-block mag-cat">downloads</a>
<a href="#" class="card-link text-uppercase ml-0 d-inline-block cat">culture</a>
</div>
<h5 class="card-title mb-4 mb-md-0">The Art of Noticing: Cracking the Code to Entrepreneurial Success
</h5>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="card rounded-0 border-0">
<picture class="image-wrap">
<img
src="https://d.newsweek.com/en/full/1517355/per-art-noticing-sidebar-02.jpg?w=466&h=311&l=50&t=29&q=90&f=70bbab0e6dee55dbea92e339f46c4227"
class="card-img-top fr-image" width="466" alt="Cracking the Code to Entrepreneurial Success">
</picture>
<div class="card-body p-0">
<div class="card-category my-2">
<a href="#" class="card-link text-uppercase d-inline-block mag-cat">downloads</a>
<a href="#" class="card-link text-uppercase ml-0 d-inline-block cat">culture</a>
</div>
<h5 class="card-title mb-4 mb-md-0">A Conversation With the Author of 'The Art of Noticing'</h5>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="card rounded-0 border-0">
<picture class="image-wrap">
<img
src="https://d.newsweek.com/en/full/1517316/partingshot-mollyshannon.jpg?w=466&h=311&q=90&f=60b30ef1053319c2e427154ab8002ee2"
class="card-img-top fr-image" width="466" alt="Cracking the Code to Entrepreneurial Success">
</picture>
<div class="card-body p-0">
<div class="card-category my-2">
<a href="#" class="card-link text-uppercase d-inline-block mag-cat">downloads</a>
<a href="#" class="card-link text-uppercase ml-0 d-inline-block cat">culture</a>
</div>
<h5 class="card-title mb-4 mb-md-0">Molly Shannon Opens Up About Life After HBO's 'Divorce'</h5>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="card rounded-0 border-0">
<div class="image-wrap">
<img
src="https://d.newsweek.com/en/full/1517302/breaking-cycle.jpg?w=480&h=320&q=90&f=4d763b75bb706bde0e3ab73d960b8f26"
class="card-img-top fr-image" width="466" height="320"
alt="Cracking the Code to Entrepreneurial Success">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-uppercase m-0 d-inline-block mag-cat">Analysis</h5>
</div>
</div>
<div class="card-body p-0 mt-3">
<h5 class="card-title mb-4 mb-md-0">BREAKING THE CYCLE</h5>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4" id="nw-editors-pick">
<div class="row">
<div
class="mag-title d-flex justify-content-center align-items-center text-uppercase font-weight-bolder pb-2 mb-3 w-100">
<img src="https://g.newsweek.com/www/images/logo-n1.svg" width="29" height="28" alt=""
class="d-block mr-2">
editor's pick
</div>
<div class="col-sm-6 col-md-3">
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1521099/matt-bevin.jpg?w=397&h=265&f=b4600f027bc3b9084bb909330ededca8"
class="card-img " alt="Kentucky Governor 'Trolls' Democrats">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">U.S.</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">Kentucky Governor 'Trolls' Democrats by Wearing Trump
Jacket at State Fair</h5>
<p class="card-text">Matt Bevin makes interesting fashion statement while meeting volunteers at the
Kentucky Democratic Party's booth.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1521429/kamala-harris.jpg?w=397&h=265&f=2c8ff0c5e1f1f431adcc2a3fb4e9c184"
class="card-img " alt="Kamala Harris">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">U.S.</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">Kamala Harris No Longer Supports Bernie Sanders' Medicare
for All Plan</h5>
<p class="card-text">"Senator Harris was hearing from lots of voters real concerns, specifically about
proactively abolishing private insurance, the four year transition, middle class tax hikes, and so
she came up with her own plan to adjust for those that, frankly, is better than his."</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1521102/hammerhead-shark.jpg?w=397&h=265&f=0c4b5f38e1ce01abe56bdc675d88d676"
class="card-img " alt="Monster Hammerhead">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">U.S.</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">Video: 'Monster Hammerhead' Shark Steals Fish From Florida
Man</h5>
<p class="card-text">"Obviously it was the most intense moment of my life," fishing guide Rob Gorta
said.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1520983/bernie-sanders.jpg?w=397&h=265&f=0d320bac8ac950df591848ffa228ee32"
class="card-img " alt="Bernie Sanders">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">U.S.</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">Bernie Sanders Says 'We Will Go to War Against White
Nationalism and Racism</h5>
<p class="card-text">"Too many people have fought over the years, too many people have died against
racism to let it resurface and flourish in America," Sanders said at a young leaders conference.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-3">
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1520980/exosuit.jpg?w=397&h=265&f=c2150c5f0e6c03998c7144f574b84673"
class="card-img " alt="Kamala Harris">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">news</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">Robotic Shorts Could Help You Move into the Future</h5>
<p class="card-text">The project from Harvard University's Biodesign Lab is the latest advance in
wearable robotics and the visual effect is a sort of high-tech lederhosen.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1520601/trump-tax-cuts.jpg?w=397&h=265&f=a6d5526be7cd36b0b3bd88394bd4cb9d"
class="card-img " alt="Are Republicans Underfunding the IRS to Help Corporations Pay Less?">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">U.S.</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">Are Republicans Underfunding the IRS to Help Corporations
Pay Less?</h5>
<p class="card-text">"Cutting budgets is one way to handicap an agency without eliminating it
altogether," said Bridget Stomberg, an associate professor of accounting at the Indiana University
Kelley School of Business.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1520959/presidential-candidates-hit-soapbox-iowa-state-fair.jpg?w=397&h=265&f=4205f2168e4dba6c34c477cd377a3b96"
class="card-img " alt="Democrats Remain Open-Minded">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">politics</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">Democrats Remain Open-Minded, Enthusiastic About Array of
2020 Candidates</h5>
<p class="card-text">While former Vice President Joe Biden may be reigning in the polls, the
Democratic electorate is far from tethered to their first choice.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1520308/jupiter-collision.jpg?w=397&h=265&f=44e3171edbc442fb0a39bc3d256e9b94"
class="card-img " alt="Jupiter Was Hit by Another Planet 4.5 Billion Years Ago, Scientists Say">
<div class="card-img-overlay p-0 position-absolute fixed-bottom">
<h5 class="card-title text-danger text-uppercase m-0 bg-light">TECH & SCIENCE</h5>
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold h4">Jupiter Was Hit by Another Planet 4.5 Billion Years Ago,
Scientists Say</h5>
<p class="card-text">The latest findings could help to explain some puzzling measurements collected by
the Juno spacecraft, which is currently orbiting the planet.</p>
</div>
</div>
</div>
</div>
</div> <!-- editors pick -->
<div id="featured-slideshows" class="border-bottom">
<div
class="mag-title d-flex justify-content-center align-items-center text-uppercase font-weight-bolder pb-2 mb-3 w-100">
<img src="https://g.newsweek.com/www/images/logo-n1.svg" width="29" height="28" alt="" class="d-block mr-2">
featured slideshows
</div>
<div class="row">
<div class="col-sm-4">
<article>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative mb-3">
<img
src="https://d.newsweek.com/en/full/1520044/lancaster-meeting-house.jpg?w=397&h=265&f=254c6ae482a2ce8f1b41fa84983bfec3"
class="card-img " alt="American Masterpieces">
<div class="card-img-overlay p-0 position-absolute fixed-bottom count-link">11
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold">American Masterpieces: Singular Expressions of National
Genius</h5>
</div>
</div>
</article>
</div>
<div class="col-sm-4">
<article>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative mb-3">
<img
src="https://d.newsweek.com/en/full/1520147/singita-kwitonda-lodge-exterior.jpg?w=397&h=265&f=007300b4c1073aaab105c9adef80744e"
class="card-img " alt="Eco-Gorilla Opens in Rwanda">
<div class="card-img-overlay p-0 position-absolute fixed-bottom count-link">16
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold">An Eco-Gorilla Opens in Rwanda</h5>
</div>
</div>
</article>
</div>
<div class="col-sm-4">
<article>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative mb-3">
<img
src="https://d.newsweek.com/en/full/1519560/junk-artist.png?w=397&h=265&f=cad1adb74cd88024e0877c13b4e8d509"
class="card-img " alt="The Junk Art King of Zambia">
<div class="card-img-overlay p-0 position-absolute fixed-bottom count-link">8
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold">The Junk Art King of Zambia</h5>
</div>
</div>
</article>
</div>
<div class="col-sm-4">
<article>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative mb-3">
<img
src="https://d.newsweek.com/en/full/1518252/palazzo-mediceo-tuscany.jpg?w=397&h=265&f=6b6ccd62f696f1408431401c31e6e25a"
class="card-img " alt="Contemporary Art in Tuscany">
<div class="card-img-overlay p-0 position-absolute fixed-bottom count-link">8
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold">Contemporary Art in Tuscany: A New York Artist Takes Italy
by Storm</h5>
</div>
</div>
</article>
</div>
<div class="col-sm-4">
<article>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative mb-3">
<img
src="https://d.newsweek.com/en/full/1518092/woodstock-1969.jpg?w=397&h=265&f=19b54c0c46d01e440cbcaf43651273cd"
class="card-img " alt="Woodstock in Photos">
<div class="card-img-overlay p-0 position-absolute fixed-bottom count-link">31
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold">Woodstock in Photos: 3 Days of Peace and Music That Defined
a Generation</h5>
</div>
</div>
</article>
</div>
<div class="col-sm-4">
<article>
<div class="card text-body border-0 pb-4">
<div class="wrap position-relative mb-3">
<img
src="https://d.newsweek.com/en/full/1518020/queen-elizabeth.jpg?w=397&h=265&f=9ad1864496a17244193a507e41485e9d"
class="card-img " alt="queen-elizabeth">
<div class="card-img-overlay p-0 position-absolute fixed-bottom count-link">81
</div>
</div>
<div class="card-body p-0 mt-1">
<h5 class="card-title font-weight-bold">Modern-Day Dynasties Still Ruling the World</h5>
</div>
</div>
</article>
</div>
</div>
</div> <!-- featured slideshows -->
<div id="section-picks">
<div class="block-title pt-4 pb-2">
<span>U.S.</span>
</div>
<div class="row">
<div class="col-md-4">
<article>
<div class="card text-body border-0">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1521463/border-wall.jpg?w=397&h=265&f=4e4db6c4e5e02b7fca2535d77b9ad4ee"
class="card-img " alt="Texas Border Town">
</div>
<div class="card-body p-0 mt-2 mb-4">
<h5 class="card-title font-weight-bold">Texas Border Town's Council to Meet With Crowdfunded 'Build
the Wall' Group</h5>
</div>
</div>
</article>
</div>
<div class="col-md-4">
<article>
<div class="card text-body border-0">
<div class="wrap position-relative">
<img
src="https://d.newsweek.com/en/full/1521437/fox-friends-guest.png?w=397&h=265&f=ba60d7dbfc4a1243d1062463dee5ebed"
class="card-img " alt="Kellyanne Conway">
</div>
<div class="card-body p-0 mt-2 mb-4">
<h5 class="card-title font-weight-bold">Kellyanne Conway Falsely Claims Antifa Stands for
'Anti-First Amendment'</h5>
</div>
</div>
</article>
</div>
<div class="col-md-4">
<div class="sub-section-picks">
<ul class="pl-0">
<li class="d-flex">
<img
src="https://d.newsweek.com/en/full/1521444/guns.jpg?w=135&h=90&f=49acd42cd6b4d2f8f9615ed43c4316c8"
alt="" class="img-thumbnail border-0 mr-2">
<div class="sub-info">
<span>Many Americans Have Invested in Gun Makers Through Retirement Portfolios</span>
</div>
</li>
<li class="d-flex">
<img
src="https://d.newsweek.com/en/full/1521439/donald-trump.jpg?w=135&h=90&f=ac8a98af6d93ea51794f74b98794b326"
alt="White House Considering Payroll Tax Cut As More Economists Fear Recession"
class="img-thumbnail border-0 mr-2">
<div class="sub-info">
<span>White House Considering Payroll Tax Cut As More Economists Fear Recession</span>
</div>
</li>
<li class="d-flex">
<img
src="https://d.newsweek.com/en/full/1521413/cal-state-fullerton-fatal-stabbing.jpg?w=135&h=90&f=5a849316a4b82ead9dc7f0919a4e9c9c"
alt="Cal State Faculty Member Potentially 'Targeted' in Fatal Stabbing"
class="img-thumbnail border-0 mr-2">
<div class="sub-info">
<span>Cal State Faculty Member Potentially 'Targeted' in Fatal Stabbing</span>
</div>
</li>
</ul>
</div>