-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1344 lines (1338 loc) · 50.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">
<head>
<title>Newsweek Clone - Bootstrap Project</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, 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="styles.css" />
<link rel="stylesheet" href="media.css" />
<link
href="https://fonts.googleapis.com/css?family=Bree+Serif&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav class="navbar-nav">
<div class="row justify-content-between red-section">
<span class="date d-none d-lg-block">Mon, Aug 05, 2019</span>
<h1 class="font">Newsweek</h1>
<div class="btn-container">
<button class="nav-btn1">Sign In</button>
<button class="nav-btn2">Subscribe</button>
</div>
</div>
<div class="row d-none d-lg-block">
<ul class="pt-2 d-flex col-12 justify-content-between">
<li class="pl-0">U.S.</li>
<li>World</li>
<li>Business</li>
<li>Tech & Science</li>
<li>Culture</li>
<li>Sports</li>
<li>Health</li>
<li>Opinion</li>
<li class="border-0">Vantage</li>
<li class="border-0"><input type="text" placeholder="Search" /></li>
</ul>
</div>
</nav>
<main>
<section class="container-fluid section-1">
<div class="row">
<div class="col-sm-12 col-md-6 col-lg">
<h4>Featured Stories</h4>
<article class="card border-0">
<img
src="Images/mom-awards.png"
class="card-img-top"
alt="Momentum Awards"
/>
<div class="card-body">
<h5>The Newsweek Momentum Awards</h5>
<p>
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>
</article>
<article class="card border-0">
<img
src="Images/shooting-walmart.jpg"
class="card-img-top"
alt="Walmart shooting"
/>
<div class="card-body">
<h5>
How Attacking Trump Could Take Heat Off Congress to Pass Gun
Restrictions
</h5>
<p>
Former Republican Congressman David Jolly of Florida told
MSNBC that focusing on President Donald Trump "gives a pass to
the broader Republican Party."
</p>
</div>
</article>
<article class="card border-0">
<img
src="Images/north-korea-missile-test.jpg"
class="card-img-top"
alt="Momentum Awards"
/>
<div class="card-body">
<h5>
North Korea Says U.S., South Korea Will Pay 'Heavy Price' for
Drills, Fires Missiles
</h5>
<p>
"The U.S. and South Korean authorities remain outwardly
talkative about dialogue. But when they sit back, they sharpen
a sword to do us harm," North Korea's Foreign Ministry warned.
</p>
</div>
</article>
<article class="card border-0">
<img
src="Images/spot-im-logo.png"
class="card-img-top"
alt="Momentum Awards"
/>
<div class="card-body">
<h5>To Our Readers:</h5>
<p>
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>
</article>
<article class="card border-0">
<img
src="Images/best-nursing-homes.png"
class="card-img-top"
alt="Momentum Awards"
/>
<div class="card-body nursing">
<h5>Best Nursing Homes</h5>
<p>
Newsweek is partnering with the respected global data research
firm Statista Inc. to establish a ranking of Best Nursing
Homes. The final rankings will be published in Newsweek
magazine and on Newsweek.com
</p>
</div>
</article>
</div>
<div class="col-sm-12 col-md-6 col-lg-5 p-0">
<h4>Top Story</h4>
<article class="card border-0">
<img src="Images/sad.jpg" class="card-img-top" alt="El-Paso" />
<div class="card-body">
<h5>
Mitch McConnell Remains Silent on Pushing Gun Regulation
Through Senate
</h5>
<p>
McConnell, who is currently recovering from a fractured
shoulder at his home in Kentucky, has not responded to
widespread calls for the Senate to act in the wake of two mass
shootings.
</p>
</div>
</article>
<div class="container-fluid">
<h4>Culture & Travel</h4>
<div class="row">
<div class="col-sm-12 col-md p-0">
<article class="card mr-2 h-50 border-0">
<img
src="Images/genever.jpg"
class="card-img-top"
alt="El-Paso"
/>
<div class="card-body">
<h5>
7 Best Cocktail Bars in Los Angeles
</h5>
<p>
Los Angeles has quickly become one of the best cocktail
cities in America and has the bars to prove it.
</p>
</div>
</article>
<article class="card mr-2 h-50 border-0">
<img
src="Images/netflix.png"
class="card-img-top"
alt="El-Paso"
/>
<div class="card-body">
<h5>
What's Coming to Netflix in August 2019?
</h5>
<p>
Every film of the Rocky series will debut on Netflix
next month along with several new original titles.
</p>
</div>
</article>
</div>
<div class="col-sm-12 col-md p-0">
<article class="card ml-2 h-50 border-0">
<img
src="Images/egypt.png"
class="card-img-top"
alt="El-Paso"
/>
<div class="card-body">
<h5>
Ancient Egypt: Underwater Archaeologists Find Temple
Ruins in Sunken City
</h5>
<p>
Researchers also found treasures like jewelry and coins
in the remains of ancient shipwrecks.
</p>
</div>
</article>
<article class="card ml-2 h-50 border-0">
<img
src="Images/cul-books.jpg"
class="card-img-top"
alt="El-Paso"
/>
<div class="card-body">
<h5>
30 Last Chance Beach Reads for Summer 2019
</h5>
<p>
Dive into a new world of literature with Newsweek's top
30 picks to read during these final lazy, hazy, crazy
days of summer.
</p>
</div>
</article>
</div>
</div>
</div>
<h4 class="mt-5">More Stories</h4>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/gun-reform.jpg"
class="latest-img"
alt="Trump Rally"
/>
<h6 class="opinion-title text-1">
Homeland Security Chief: 'We Need to Invest More' in Combating
White Supremacist Violence
</h6>
<p class="text-1 more-stories">
Department of Homeland Security Secretary Kevin McAleenan said
he wants to bolster the program and has asked Congress for
more funding.
</p>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/democratic.jpg"
class="latest-img"
alt="Jack The Ripper"
/>
<h6 class="opinion-title text-1">
Biden, Harris Are Top Targets of Misinformation During July
Democratic Debates
</h6>
<p class="text-1 more-stories">
The falsehoods identified by VineSight were not
run-of-the-mill social media jabs, but high-performing tweets
that passed a certain threshold for virality.
</p>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/iran.jpg"
class="latest-img"
alt="Rowan University"
/>
<h6 class="opinion-title text-1">
Russia, Iran Step Up Rhetoric Against U.S., Announce Plans to
Train Together
</h6>
<p class="text-1 more-stories">
Iran's navy chief called the U.K.'s decision to join the U.S.
in the Persian Gulf "a big bluff and a deceitful act that
tries to make this region look unsafe, even though it is
secure.
</p>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/gold.jpg"
class="latest-img"
alt="Hanna Thompson"
/>
<h6 class="opinion-title text-1">
World's Thinnest Gold Just Two Atoms Thick Created by
Scientists
</h6>
<p class="text-1 more-stories">
The material is considered to be two-dimensional because all
of the atoms—which are laid out in two layers, one on top of
the other—are surface atoms.
</p>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/aoc.jpg"
class="latest-img"
alt="Ocasio-Cortez"
/>
<h6 class="opinion-title text-1">
Ocasio-Cortez Blasts McConnell Over 'Team Mitch' Groping and
Choking Cutout of Her
</h6>
<p class="text-1 more-stories">
"Is this just the standard culture of #TeamMitch?" New York
Representative Alexandria Ocasio-Cortez asked.
</p>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/connor.jpg"
class="latest-img"
alt="Horizon High School"
/>
<h6 class="opinion-title text-1">
Twitter Account Linked to Dayton Shooter Praised Satan,
Socialism
</h6>
<p class="text-1 more-stories">
The man who killed nine people at a bar in Dayton, Ohio, was a
violent misogynist.
</p>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/r-kelly.jpg"
class="latest-img"
alt="kellyanne Conway"
/>
<h6 class="opinion-title text-1">
R. Kelly Allegedly Paid Underage Girl for Sexual Contact, New
Charges Say
</h6>
<p class="text-1 more-stories">
The singer has denied all the allegations against him.
</p>
</div>
</article>
</div>
<div class="col-sm-12 col-md-12 col-lg section-1-3">
<h4>Opinion</h4>
<article class="opinion-article clearfix">
<div class="opinion-div-1 w-100">
<img
src="Images/alexandra-minna-stern.png"
class="opinion-img"
alt="Alexandra Minna Stern"
/>
<h6 class="opinion-title text">
It's Come to This: White Nationalism Is Inciting Mass Murder
in America
</h6>
<p class="text">BY ALEXANDRA MINNA STERN</p>
</div>
</article>
<article class="opinion-article clearfix pt-2">
<div class="opinion-div-1 w-100">
<img
src="Images/michael-e-mann.png"
class="opinion-img"
alt="Michael Mann"
/>
<h6 class="opinion-title text">
Climate Change Is Finally on the Agenda for 2020. But Is It
Too Late?
</h6>
<p class="text">BY MICHAEL E. MANN</p>
</div>
</article>
<article class="opinion-article clearfix pt-2">
<div class="opinion-div-1 w-100">
<img
src="Images/sayu-bhojwani.png"
class="opinion-img"
alt="Sayu Bhojwani"
/>
<h6 class="opinion-title text">
It'll Take More Than Photo Ops at the Border to Win the
Immigrant Vote
</h6>
<p class="text">BY SAYU BHOJWANI</p>
</div>
</article>
<article class="opinion-article clearfix pt-2">
<div class="opinion-div-1 w-100">
<img
src="Images/anthony-harwood.png"
class="opinion-img"
alt="Anthony Harwood"
/>
<h6 class="opinion-title text">
The Incredible Pettiness of Saudi 'Progress' on Women's Rights
</h6>
<p class="text">BY ANTHONY HARWOOD</p>
</div>
</article>
<article class="opinion-article clearfix pt-2">
<div class="opinion-div-1 w-100">
<img
src="Images/alfie-bown.png"
class="opinion-img"
alt="Alfie Bown and Mou Ming"
/>
<h6 class="opinion-title text">
China's Answer to the Hong Kong Crisis Must Be Political
Reform
</h6>
<p class="text">BY ALFIE BOWN AND MOU MING</p>
</div>
</article>
<article class="opinion-article clearfix pt-2">
<div class="opinion-div-1 w-100">
<img
src="Images/charlie-kirk.png"
class="opinion-img"
alt="Charlie Kirk"
/>
<h6 class="opinion-title text">
Seven Big Reveals About the Democrats' 2020 Civil War
</h6>
<p class="text">BY CHARLIE KIRK</p>
</div>
</article>
<h4 class="mt-5">Latest News</h4>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/donald-trump-rally.jpg"
class="latest-img"
alt="Trump Rally"
/>
<h6 class="opinion-title text-1">
CNN Plays Clip of Trump Laughing As Supporter Says Migrants
Should Be Shot
</h6>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/jack-ripper.png"
class="latest-img"
alt="Jack The Ripper"
/>
<h6 class="opinion-title text-1">
Who Was Martha Tabram? Jack The Ripper May Have Killed Her 131
Years Ago
</h6>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/rowan.jpg"
class="latest-img"
alt="Rowan University"
/>
<h6 class="opinion-title text-1">
By Dumping Traditional Textbooks University Hopes to Save
Students $1.2M
</h6>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/hanna-thompson.jpg"
class="latest-img"
alt="Hanna Thompson"
/>
<h6 class="opinion-title text-1">
Identical Twins Diagnosed With 'Mirror' Breast Cancer Just
Weeks Apart
</h6>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img src="Images/huawei.jpg" class="latest-img" alt="Huawei" />
<h6 class="opinion-title text-1">
What is HongMeng? Huawei's Mystery New Mobile OS May Soon Be
Revealed
</h6>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/horizon-high-school-vigil.jpg"
class="latest-img"
alt="Horizon High School"
/>
<h6 class="opinion-title text-1">
High School Holds Sunset Memorial for Teenager Killed in El
Paso Attack
</h6>
</div>
</article>
<article class="opinion-article clearfix">
<div class="latest-div-1 w-100">
<img
src="Images/kellyanne-conway.jpg"
class="latest-img"
alt="kellyanne Conway"
/>
<h6 class="opinion-title text-1">
Kellyanne Conway Shames Elizabeth Warren's Fundraising Off
Dayton Shooting
</h6>
</div>
</article>
<article
class="card p-0 col-md-4 offset-md-4 col-lg-12 offset-lg-0"
>
<img src="Images/usc.jpg" class="card-img-top" alt="USC" />
<div class="card-body">
<h5>
What can a career in public affairs, policy & administration
do for you?
</h5>
<p>
Find out what positions in this challenging and rewarding
field entail and how you can get the necessary qualifications.
</p>
</div>
</article>
<div
class="sign-up mt-3 card col-sm-6 offset-sm-3 card col-md-6 offset-md-3 col-lg-12 offset-lg-0"
>
<div>
<div class="news-logo font">N</div>
<h6>SIGN UP FOR OUR NEWSLETTER</h6>
<button class="btn btn-secondary">SIGN UP</button>
<p>Update your preferences »</p>
</div>
</div>
<article
class="card p-0 mt-4 col-md-4 offset-md-4 col-lg-12 offset-lg-0"
>
<img
src="Images/cbd-home-page.jpg"
class="card-img-top"
alt="USC"
/>
<div class="card-body">
<h5>
The Ultimate Guide to CBD
</h5>
<p>
Heralded as “magic” by Tommy Chong, CBD is more than just a
trendy buzzword. In this Special Edition from Newsweek, learn
everything you need to know about CBD, from potential uses to
the ever-changing legislation surrounding it.
</p>
</div>
</article>
</div>
</div>
</section>
<section class="container-fluid second-section">
<div class="row">
<div class="col-md-3 section2-div1">
<article class="w-100">
<div class="trp-1 trp-img m1"></div>
<div class="trp-2">
<p>SEE ALL FEATURES ></p>
</div>
</article>
</div>
<div class="col-md-9 section2-div2">
<div class="mag-heading">
<div class="news-logo-2 px-2 font">N</div>
<span class="magazine">IN THE MAGAZINE</span>
</div>
<div class="row justify-content-md-between">
<article class="col-sm-12 col-md">
<div class="mag-img m2"></div>
<div class="my-3">
<span class="category-1 p-2">COVER</span>
<span class="category-2 p-2">U.S.</span>
</div>
<h6>The inside story of Charlottesville</h6>
</article>
<article class="col-sm-12 col-md">
<div class="mag-img m3"></div>
<div class="my-3">
<span class="category-1 p-2">COVER</span>
<span class="category-2 p-2">U.S.</span>
</div>
<h6>
Terry McAuliffe on Charlottesville, Racism and Donald Trump
</h6>
</article>
<article class="col-sm-12 col-md">
<div class="mag-img m4"></div>
<div class="my-3">
<span class="category-1 p-2">FEATURES</span>
<span class="category-2 p-2">WORLD</span>
</div>
<h6>A Deeper Divide in a Divided City</h6>
</article>
</div>
</div>
</div>
</section>
<section class="third-section container-fluid mt-1">
<div class="section2-div2">
<div class="row justify-content-md-between">
<article class="col-sm-12 col-md">
<div class="mag-img m5"></div>
<div class="my-3">
<span class="category-1 p-2">DOWNLOADS</span>
<span class="category-2 p-2">CULTURE</span>
</div>
<h6>How To (Re)Make Money</h6>
</article>
<article class="col-sm-12 col-md">
<div class="mag-img m6"></div>
<div class="my-3">
<span class="category-1 p-2">NEW WORLD</span>
<span class="category-2 p-2">CULTURE</span>
</div>
<h6>
What's Your Moonshot? Meet the Man Coating Fruits and Vegetables
to Alleviate Food Waste and World Hunger
</h6>
</article>
<article class="col-sm-12 col-md">
<div class="mag-img m7"></div>
<div class="my-3">
<span class="category-1 p-2">DOWNTIME</span>
<span class="category-2 p-2">CULTURE</span>
</div>
<h6>
RuPaul On Drag Queens' Special Ability to Connect With Audiences
</h6>
</article>
<article class="col-sm-12 col-md">
<div class="mag-img m8"></div>
<div class="my-3">
<span class="category-1 p-2">FEATURES</span>
<span class="category-2 p-2">WORLD</span>
</div>
<h6>WORLD-CLASS RELIEF</h6>
</article>
</div>
</div>
</section>
<section class="fourth-section container-fluid mt-3">
<div class="mag-heading">
<div class="news-logo-2 px-2 font">N</div>
<span class="ml-3">EDITOR'S PICK</span>
</div>
<div class="section2-div2">
<div class="row justify-content-md-around">
<article class="col-sm-12 col-md-6 col-lg">
<div class="mag-img m9"></div>
<div class="my-3"></div>
<h6>
El Paso Newspaper Editor Has a Message for Trump Ahead of
President's Visit
</h6>
<p>
Trump will visit first responders and victims' families in
Dayton, Ohio, where nine people were killed by a gunman at a
bar, before moving on to El Paso, where 22 people lost their
lives by a separate gunman at a Walmart.
</p>
</article>
<article class="col-sm-12 col-md-6 col-lg">
<div class="mag-img m10"></div>
<div class="my-3"></div>
<h6>
College Student Tried to Access Trump's Tax Info With FAFSA
Application
</h6>
<p>
On Tuesday, the same day that the president's re-election
campaign sued California over a law requiring presidential
candidates to release their tax returns, the student pleaded
guilty.
</p>
</article>
<article class="col-sm-12 col-md-6 col-lg">
<div class="mag-img m11"></div>
<div class="my-3"></div>
<h6>
Disney Is Rebooting 'Home Alone' and People Are Not Happy About
It
</h6>
<p>
Kevin McCalister's masterful plots and schemes against burglars
Harry and Marv may be a bit different than what was portrayed in
the 1990 classic.
</p>
</article>
<article class="col-sm-12 col-md-6 col-lg">
<div class="mag-img m12"></div>
<div class="my-3"></div>
<h6>Toni Morrison's 1981 Newsweek Cover Story</h6>
<p>
In the feature, Toni Morrison discussed her childhood, her work
and how she felt about being called a "black writer." "Of course
I'm a black writer. That's like saying Dostoevsky's not a
Russian writer."
</p>
</article>
</div>
</div>
<div class="section2-div2">
<div class="row justify-content-md-around">
<article class="col-sm-12 col-md-6 col-lg">
<div class="mag-img m13"></div>
<div class="my-3"></div>
<h6>
High School Holds Sunset Memorial for Teenager Killed in El Paso
Attack
</h6>
<p>
"Javier was just a young man full of life...He didn't deserve to
die in a tragedy like this," said Juan Martinez, superintendent
of the Clint Independent School District outside El Paso.
</p>
</article>
<article class="col-sm-12 col-md-6 col-lg">
<div class="mag-img m14"></div>
<div class="my-3"></div>
<h6>
O'Rourke Stands Up To Trump: 'El Paso Will Not Be Quiet And
Neither Will I'
</h6>
<p>
"22 people in my hometown are dead after an act of terror
inspired by your racism," 2020 Democratic presidential candidate
Beto O'Rourke said in a message aimed at President Donald Trump.
</p>
</article>
<article class="col-sm-12 col-md-6 col-lg">
<div class="mag-img m15"></div>
<div class="my-3"></div>
<h6>
Mostly Plant-Based Diet Could Cut Heart Disease Risk
</h6>
<p>
And not all plant-based diets are equally healthy, an expert
told Newsweek.
</p>
</article>
<article class="col-sm-12 col-md-6 col-lg">
<div class="mag-img m16"></div>
<div class="my-3"></div>
<h6>
Ex-GOP Congressman Says Republicans Will Do 'Nothing' on Gun
Control
</h6>
<p>
Former Florida Congressman David Jolly called on Democrats to
clear out Republicans from the House and Senate to tackle gun
control.
</p>
</article>
</div>
</div>
</section>
<section class="fifth-section container-fluid pt-5">
<h4>FEATURED SLIDESHOWS</h4>
<div class="section2-div2">
<div class="row justify-content-md-around">
<article class="col-sm-12 col-md-4">
<div class="mag-img m17"></div>
<div class="my-3"></div>
<h6>
The Manson Family in Photos: Portraits of Murder
</h6>
</article>
<article class="col-sm-12 col-md-4">
<div class="mag-img m18"></div>
<div class="my-3"></div>
<h6>
Avant Garde King Pierre Cardin Takes Brooklyn by Storm
</h6>
</article>
<article class="col-sm-12 col-md-4">
<div class="mag-img m19"></div>
<div class="my-3"></div>
<h6>
The Revamped Oscar de la Renta Is All the Rage
</h6>
</article>
</div>
</div>
<div class="section2-div2">
<div class="row justify-content-md-around">
<article class="col-sm-12 col-md-4">
<div class="mag-img m20"></div>
<div class="my-3"></div>
<h6>
How to Survive a Walking Safari in Africa
</h6>
</article>
<article class="col-sm-12 col-md-4">
<div class="mag-img m21"></div>
<div class="my-3"></div>
<h6>
Under the Sea: A Diving Bucket List
</h6>
</article>
<article class="col-sm-12 col-md-4">
<div class="mag-img m22"></div>
<div class="my-3"></div>
<h6>
One Giant Leap: 5 U.S. Destinations That Helped Put Man on the
Moon
</h6>
</article>
</div>
</div>
</section>
<hr class="divider" />
<section class="sixth-section container-fluid">
<h4>U.S.</h4>
<div class="row">
<div class="col-md-8 justify-content-md-between p-0">
<article class="col-md-6 float-left">
<div class="mag-img m23"></div>
<div class="my-3"></div>
<h6 class="sixth-heading">
Lawsuit: University 'Branded' Student as Rapist, Ended His NFL
Chances
</h6>
</article>
<article class="col-md-6 float-right">
<div class="mag-img m24"></div>
<div class="my-3"></div>
<h6 class="sixth-heading">
One of Castro's Own Donors Was Included On List of Top Trump
Contributors
</h6>
</article>
</div>
<div class="col-md-4 p-0 sixth-2">
<article class="col-md-12 clearfix side">
<div class="latest-div-1 w-100">
<img
src="Images/tucker.jpg"
class="latest-img"
alt="Trump Rally"
/>
<h6 class="opinion-title text-1">
Former Head of KKK Supports Tucker Carlson for White Supremacy
'Hoax' Claim
</h6>
</div>
</article>
<article class="col-md-12 clearfix side">
<div class="latest-div-1 w-100 pt-2">
<img
src="Images/joe.png"
class="latest-img"
alt="Trump Rally"
/>
<h6 class="opinion-title text-1">
Joe Rogan Trends On Twitter After Bernie Sanders Appears On
Podcast
</h6>
</div>
</article>
<article class="col-md-12 clearfix">
<div class="latest-div-1 w-100 pt-2">
<img
src="Images/wall.jpg"
class="latest-img"
alt="Trump Rally"
/>
<h6 class="opinion-title text-1">
Texas College Dems: Trump Only Cares About Us When Saying
'Build The Wall'
</h6>
</div>
</article>
</div>
</div>
</section>
<hr class="divider" />
<section class="sixth-section container-fluid">
<h4>WORLD</h4>
<div class="row">
<div class="col-md-8 justify-content-md-between p-0">
<article class="col-md-6 float-left">
<div class="mag-img m25"></div>
<div class="my-3"></div>
<h6 class="sixth-heading">
Video Shows Turkmen Leader Defy Death Rumors with Wild Summer
Vacation
</h6>
</article>
<article class="col-md-6 float-right">
<div class="mag-img m26"></div>
<div class="my-3"></div>
<h6 class="sixth-heading">
China and Pakistan Warn India Over 'Unacceptable' Border Moves
</h6>
</article>
</div>
<div class="col-md-4 p-0 sixth-2">
<article class="col-md-12 clearfix side">
<div class="latest-div-1 w-100">
<img
src="Images/japan.jpg"
class="latest-img"
alt="Trump Rally"
/>
<h6 class="opinion-title text-1">
Iran Names U.S. As 'First and Only' to Use Nuclear Weapons on
Anniversary
</h6>
</div>
</article>
<article class="col-md-12 clearfix side">
<div class="latest-div-1 w-100 pt-2">
<img
src="Images/korea.jpg"
class="latest-img"
alt="Trump Rally"
/>
<h6 class="opinion-title text-1">
N. Korea Says U.S., South to Pay 'Heavy Price' for Drills,
Fires Missiles
</h6>
</div>
</article>
<article class="col-md-12 clearfix">
<div class="latest-div-1 w-100 pt-2">
<img
src="Images/spanish.jpg"
class="latest-img"
alt="Trump Rally"
/>
<h6 class="opinion-title text-1">
Spanish Police Order Man Who Threw Fridge Off Cliff To Haul It
Back Up
</h6>
</div>
</article>
</div>
</div>
</section>
<hr class="divider" />
<section class="sixth-section container-fluid">
<h4>BUSINESS</h4>
<div class="row">
<div class="col-md-8 justify-content-md-between p-0">
<article class="col-md-6 float-left">
<div class="mag-img m27"></div>
<div class="my-3"></div>
<h6 class="sixth-heading">
22-Year-Old Allegedly Scammed Amazon Out Of $370K
</h6>
</article>
<article class="col-md-6 float-right">
<div class="mag-img m28"></div>
<div class="my-3"></div>
<h6 class="sixth-heading">
Andrew Yang Net Worth: Democratic Candidate Promises $1,000 to
All Adults
</h6>
</article>
</div>
<div class="col-md-4 p-0 sixth-2">
<article class="col-md-12 clearfix side">
<div class="latest-div-1 w-100">
<img
src="Images/janet.jpg"
class="latest-img"
alt="Trump Rally"
/>
<h6 class="opinion-title text-1">
Ex-Federal Reserve Chair Janet Yellen Agrees With Trump: Cut
Rates
</h6>
</div>