-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
843 lines (762 loc) · 51.7 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
<!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">
<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="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
<link rel="stylesheet" href="./assets/stylesheet/content.css" />
<link rel="stylesheet" href="./assets/stylesheet/reset.css" />
<link rel="stylesheet" href="./assets/stylesheet/style.css" />
<link rel="icon" type="image/png" href="./assets/favico/favico.png">
<title>Newsweek - Newsweek</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light d-flex flex-column ">
<div class="header-one d-flex flex-row justify-content-between align-items-center p-2">
<div class="text-white d-none d-sm-none d-md-none d-lg-block">Friday, July 12, 2019</div>
<a class="navbar-brand" href="#">
<img class="news-logo" src="./assets/images/main_logo.png" alt="">
</a>
<div class="d-flex flex-row">
<a class="text-white text-decoration-none pr-2 font-weight-bolder align-self-center" href="#">SIGN IN</a>
<a class="text-danger text-decoration-none font-weight-bolder p-2" style=" background: white;" href="#">SUBSCRIBE</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#trigger" aria-controls="trigger" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
<div class="collapse navbar-collapse w-100 bg-light" id="trigger" style="text-align:center">
<!-- <a class="navbar-brand" href="#">logo</a>-->
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link black-text" href="#">U.S</a>
</li>
<li class="nav-item">
<a class="nav-link black-text" href="#">World</a>
</li>
<li class="nav-item">
<a class="nav-link black-text" href="#">Business</a>
</li>
<li class="nav-item">
<a class="nav-link black-text" href="#">Tech & Science</a>
</li>
<li class="nav-item">
<a class="nav-link black-text" href="#">Culture</a>
</li>
<li class="nav-item">
<a class="nav-link black-text" href="#">Sports</a>
</li>
<li class="nav-item">
<a class="nav-link black-text" href="#">Health</a>
</li>
<li class="nav-item">
<a class="nav-link black-text" href="#">Opinion</a>
</li>
</ul>
<form class="form-inline d-none d-sm-none d-md-none d-lg-block">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<img src="images/_ionicons_svg_md-search.svg" height="30" alt="">
</form>
</div>
</nav>
<div class="container-fluid body-wrap">
<div class="row">
<div class=" col-sm-7 order-sm-2 col-md-7 order-md-2 col-lg-5 order-lg-2 shadow-lg">
<h1 class="unique">TOP STORY</h1>
<div class="main-story">
<img src="https://d.newsweek.com/en/full/1515563/gilroy-shooting-california.jpg?w=591&h=364&q=90&f=eacabdce176062f73ab80daf9211f4e5" alt="main-story_one" class="img-fluid"><br>
<a href="#">Trump and Russia's Putin Talk Venezuela, North Korea and Nuclear Weapons</a>
<p>The White House said President Donald Trump and Russian President Vladimir Putin had a "very positive" conversation as tensions between their countries reached a historic high.</p>
</div>
<hr>
<h5>Russia Says U.S. 'Wrong' on Venezuela, Will Gather Allies to Prove It</h5>
<hr>
<h5 class="unique">MORE STORIES</h5>
<hr>
<div class="sub_main d-flex">
<div class="left_main">
<img alt="sub" src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" class="img-fluid">
</div>
<div class="ryt_main">
<h5>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veniam, nam.</h5>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Libero, quod! Repellat autem, natus molestiae dolores rem odit perferendis non illo!</p>
</div>
</div>
<hr>
<div class="sub_main d-flex">
<div class="left_main">
<img alt="sub" src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" class="img-fluid">
</div>
<div class="ryt_main">
<h5>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veniam, nam.</h5>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Libero, quod! Repellat autem, natus molestiae dolores rem odit perferendis non illo!</p>
</div>
</div>
<hr>
<div class="sub_main d-flex">
<div class="left_main">
<img alt="sub" src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" class="img-fluid">
</div>
<div class="ryt_main">
<h5>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veniam, nam.</h5>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Libero, quod! Repellat autem, natus molestiae dolores rem odit perferendis non illo!</p>
</div>
</div>
<hr>
<div class="sub_main d-flex">
<div class="left_main">
<img alt="sub" src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" class="img-fluid">
</div>
<div class="ryt_main">
<h5>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veniam, nam.</h5>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Libero, quod! Repellat autem, natus molestiae dolores rem odit perferendis non illo!</p>
</div>
</div>
<hr>
<div class="sub_main d-flex">
<div class="left_main">
<img alt="sub" src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" class="img-fluid">
</div>
<div class="ryt_main">
<h5>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veniam, nam.</h5>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Libero, quod! Repellat autem, natus molestiae dolores rem odit perferendis non illo!</p>
</div>
</div>
<hr>
<div class="sub_main d-flex">
<div class="left_main">
<img alt="sub" src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" class="img-fluid">
</div>
<div class="ryt_main">
<h5>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veniam, nam.</h5>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Libero, quod! Repellat autem, natus molestiae dolores rem odit perferendis non illo!</p>
</div>
</div>
<hr>
<div class="sub_main d-flex">
<div class="left_main">
<img alt="sub" src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" class="img-fluid">
</div>
<div class="ryt_main">
<h5>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veniam, nam.</h5>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Libero, quod! Repellat autem, natus molestiae dolores rem odit perferendis non illo!</p>
</div>
</div>
<hr>
<div class="sub_main d-flex">
<div class="left_main">
<img alt="sub" src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" class="img-fluid">
</div>
<div class="ryt_main">
<h5>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veniam, nam.</h5>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Libero, quod! Repellat autem, natus molestiae dolores rem odit perferendis non illo!</p>
</div>
</div>
</div>
<div class=" col-sm-5 order-sm-1 col-md-5 order-md-1 col-lg-4 order-lg-1">
<h3 class="unique">FEATURED STORIES</h3>
<div class="feat-story">
<img src="https://d.newsweek.com/en/full/1511786/newsweek-momentum-awards-2019.png?w=397&h=265&q=90&f=b5bee11f8b144487ff291880f4d318be" alt="feat-story" class="img-fluid"><br>
<a href="#">Iran Defends Venezuela as U.S. Warns 'All Options' Are on the Table</a>
<p>The White House said President Donald Trump and Russian President Vladimir Putin had a "very positive" conversation as tensions between their countries reached a historic high.</p>
</div>
<hr>
<h5>Juan Guaidó Says Venezuela Could Call for Foreign Military Intervention
</h5>
<hr>
<div class="feat-story">
<img src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" alt="feat-story" class="img-fluid"><br>
<a href="#">Iran Defends Venezuela as U.S. Warns 'All Options' Are on the Table</a>
<p>The White House said President Donald Trump and Russian President Vladimir Putin had a "very positive" conversation as tensions between their countries reached a historic high.</p>
</div>
<hr>
<h5>Juan Guaidó Says Venezuela Could Call for Foreign Military Intervention
</h5>
<hr>
<div class="feat-story">
<img src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" alt="feat-story" class="img-fluid"><br>
<a href="#">Iran Defends Venezuela as U.S. Warns 'All Options' Are on the Table</a>
<p>"If the [Justice] Department persists in its baseless refusal to comply with a validly issued subpoena, the Committee will move to contempt proceedings and seek further legal recourse," the House Judiciary Committee chairman wrote
to Attorney General William Barr.</p>
</div>
<hr>
<h5>Juan Guaidó Says Venezuela Could Call for Foreign Military Intervention
</h5>
<hr>
<div class="feat-story">
<img src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" alt="feat-story" class="img-fluid"><br>
<a href="#">ACLU Sues Over Policy That Could See Asylum Seekers Jailed Indefinitely</a>
<p>"Trump’s true motives are clear—to deter asylum seekers and punish people who apply for protection under our laws," said ACLU Immigrants' Rights Project senior staff attorney Michael Tan.
</p>
</div>
<hr>
<h5>Juan Guaidó Says Venezuela Could Call for Foreign Military Intervention
</h5>
<hr>
<div class="feat-story card">
<img src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" alt="feat-story" class="img-fluid"><br>
<div class="card-body">
<div class="panel-body">
<a href="#">ACLU Sues Over Policy That Could See Asylum Seekers Jailed Indefinitely</a>
<p>"Trump’s true motives are clear—to deter asylum seekers and punish people who apply for protection under our laws," said ACLU Immigrants' Rights Project senior staff attorney Michael Tan.</p>
</div>
</div>
</div>
<div class="feat-story card">
<img src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" alt="feat-story" class="img-fluid"><br>
<div class="card-body">
<div>
<a href="#">ACLU Sues Over Policy That Could See Asylum Seekers Jailed Indefinitely</a>
<p>"Trump’s true motives are clear—to deter asylum seekers and punish people who apply for protection under our laws," said ACLU Immigrants' Rights Project senior staff attorney Michael Tan.</p>
</div>
</div>
</div>
<div class="feat-story card">
<img src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" alt="feat-story" class="img-fluid"><br>
<div class="card-body">
<div>
<a href="#">ACLU Sues Over Policy That Could See Asylum Seekers Jailed Indefinitely</a>
<p>"Trump’s true motives are clear—to deter asylum seekers and punish people who apply for protection under our laws," said ACLU Immigrants' Rights Project senior staff attorney Michael Tan.</p>
</div>
</div>
</div>
<div class="feat-story card">
<img src="https://d.newsweek.com/en/full/1515615/janet-yellen-federal-reserve-mnuchin.jpg?w=397&h=265&q=90&f=218421cd54f67d3559360ab61ed9ee5a" alt="feat-story" class="img-fluid"><br>
<div class="card-body">
<div>
<a href="#">ACLU Sues Over Policy That Could See Asylum Seekers Jailed Indefinitely</a>
<p>"Trump’s true motives are clear—to deter asylum seekers and punish people who apply for protection under our laws," said ACLU Immigrants' Rights Project senior staff attorney Michael Tan.</p>
</div>
</div>
</div>
</div>
<div class=" col-sm-12 order-sm-3 col-md-12 order-md-3 col-lg-3 order-lg-3">
<h3 class="unique">OPINIONS</h3>
<div class="opinion">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c " alt="opinion" class="img-fluid">
<div>
<p>Yes, 'Send Her Back' Is the face of Evil - I Know Fascism WHen I See it</p>
<br>
<h5>BY PETER ROFF</h5>
</div>
</div>
<hr>
<div class="opinion">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c " alt="opinion" class="img-fluid">
<div>
<p>Why Big Oil Should Embrace Greta Thunberg</p><br>
<h5>BY KATIE MEHNERT</h5>
</div>
</div>
<hr>
<div class="opinion">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c " alt="opinion" class="img-fluid">
<div>
<p>Russia's Dark History of Influence in America</p><br>
<h5>BY NEWT GINGRICH</h5>
</div>
</div>
<hr>
<div class="opinion">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="opinion" class="img-fluid">
<div>
<p>Did This Loophole Save Trump Campaign from Conspiracy Charges?</p><br>
<h5>BY NICK AKERMAN</h5>
</div>
</div>
<hr>
<div class="opinion">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="opinion" class="img-fluid">
<div>
<p>The EU Can Barely Hold Itself Together—and Putin Knows It</p><br>
<h5>BY THEODORE KARASIK</h5>
</div>
</div>
<hr>
<div class="opinion">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="opinion" class="img-fluid">
<div>
<p class="my-font">The Anti-vax Movement is Morally Indefensible. Here's Why</p><br>
<h5>BY JOEL MICHAEL REYNOLDS</h5>
</div>
</div>
<div class="clearfix"></div>
<!-- bedin section under opinion -->
<h5>LATEST NEWS</h5>
<div class="latest_news_section">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="latest" class="img-fluid">
<p>How to Watch and Live Stream the Kentucky Derby</p>
</div>
<hr>
<div class="latest_news_section">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="latest" class="img-fluid">
<p>How to Watch and Live Stream the Kentucky Derby</p>
</div>
<hr>
<div class="latest_news_section">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="latest" class="img-fluid">
<p>How to Watch and Live Stream the Kentucky Derby</p>
</div>
<hr>
<div class="latest_news_section">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="latest" class="img-fluid">
<p>How to Watch and Live Stream the Kentucky Derby</p>
</div>
<hr>
<div class="latest_news_section">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="latest" class="img-fluid">
<p>How to Watch and Live Stream the Kentucky Derby</p>
</div>
<hr>
<div class="latest_news_section">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="latest" class="img-fluid">
<p>How to Watch and Live Stream the Kentucky Derby</p>
</div>
<hr>
<div class="latest_news_section">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="latest" class="img-fluid">
<p>How to Watch and Live Stream the Kentucky Derby</p>
</div>
<hr>
<div class="latest_news_section">
<img src="https://d.newsweek.com/en/full/1513583/jason-stanley.png?w=63&h=63&f=fd0bf29832c8aa9a4d7c2376906f096c" alt="latest" class="img-fluid">
<p>How to Watch and Live Stream the Kentucky Derby</p>
</div>
<div class="clearfix"></div>
<!-- bedin section under opinion -->
<div class="row">
<div class="col-sm-8 ml-sm-auto mr-sm-auto col-md-8 ml-md-auto mr-md-auto col-lg-12">
<div class="card">
<div class="card-body">
<img src="https://d.newsweek.com/en/full/1515677/syria-us-military-coalition-oil.jpg?w=397&h=265&f=55ec4d8a831f33ade6a7aa1525222ab4" alt="left_card" class="img-fluid">
<h5>J.R.R. Tolkien: Inside the Mastermind of Middle-Earth</h5>
<p>Nearly a century ago, J.R.R. Tolkien introduced readers to the world of Middle-Earth, capturing the hearts and minds of generations to come. Explore the man behind The Hobbit and The Lord of the Rings in this new Special
Edition: J.R.R. Tolkien!
</p>
</div>
</div>
<div class="card">
<div class="card-body">
<img src="https://d.newsweek.com/en/full/1515672/au-guang-dragon-zone-water-park.jpg?w=397&h=265&f=9ad9a0783411d39ec09b3bd47c7500a8" alt="left_card" class="img-fluid">
<h5>J.R.R. Tolkien: Inside the Mastermind of Middle-Earth</h5>
<p>Nearly a century ago, J.R.R. Tolkien introduced readers to the world of Middle-Earth, capturing the hearts and minds of generations to come. Explore the man behind The Hobbit and The Lord of the Rings in this new Special
Edition: J.R.R. Tolkien!
</p>
</div>
</div>
<div class="card">
<div class="card-body">
<img src="https://d.newsweek.com/en/full/1515688/rush-limbaugh-donald-trump.jpg?w=397&h=265&f=822bff42b88cd22d5e091d9333898c48" alt="left_card" class="img-fluid">
<h5>J.R.R. Tolkien: Inside the Mastermind of Middle-Earth</h5>
<p>‘One size fits all’ teaching is a thing of the past. The nurturing of critical thinking is paramount in today’s global student. Where are the leaders of tomorrow studying?
</p>
</div>
</div>
<div class="card">
<div class="card-body">
<img src="https://d.newsweek.com/en/full/1515688/rush-limbaugh-donald-trump.jpg?w=397&h=265&f=822bff42b88cd22d5e091d9333898c48" alt="left_card" class="img-fluid">
<h5>GHANA: Africa’s Economic Gateway</h5>
<p>Blending enviable political and social stability with a business-friendly approach, ambitious Namibia’s geo-strategic position offers international investors intelligent access to the markets of southern Africa and beyond.
Read more.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
<!--begin design and development of in magazine-->
<div class="row mag">
<div class="col-sm-3">
<img alt="main_mag" src="https://d.newsweek.com/en/full/1515144/august-2-2019-cover.jpg?w=360&h=480&q=90&f=688907d28478b09296692a14564fd1a0" class="img-fluid">
<button class="b btn btn-light bg-color">SEE FEATURES <i class="fas fa-chevron-right"></i></button>
</div>
<div class="col-sm-9">
<div class="header_ban"><img alt="magazine_banner" src="./assets/images/magazine_poster.png" class="mr-auto ml-auto img-fluid"></div>
<hr>
<div class="row">
<div class="col-sm-4">
<img alt="feat-story" src="https://d.newsweek.com/en/full/1513527/fe-hacking-01-banner.jpg?w=466&h=311&q=90&f=bb8ad2b1cbb975b8142c1886ab45ce50" class="img-fluid">
<a>Gingrich: China Is Far More Dangerous Than We Thought</a>
</div>
<div class="col-sm-4">
<img alt="feat-story" src="https://d.newsweek.com/en/full/1513561/fe-hacking-sidebar-clarke.jpg?w=466&h=311&q=90&f=55896c1535394b3e315073b178ff1f20" class="img-fluid">
<a>Gingrich: China Is Far More Dangerous Than We Thought</a>
</div>
<div class="col-sm-4">
<img alt="feat-story" src="https://d.newsweek.com/en/full/1505599/us-iran-history-shoot-down-plane.jpg?w=466&h=311&q=90&f=f7eea65b164e576dce360428a033ec83" class="img-fluid">
<a>Gingrich: China Is Far More Dangerous Than We Thought</a>
</div>
</div>
</div>
</div>
<div class="row before-editor mag">
<div class="col-sm-3 ">
<img alt="feat-story" src="https://d.newsweek.com/en/full/1513924/per-the-code-03-511574490.jpg?w=466&h=311&q=90&f=31b90e901ad3dbc556c772e49b2e1d8f" class="img-fluid">
<a>Gingrich: China Is Far More Dangerous Than We Thought</a>
</div>
<div class="col-sm-3">
<img alt="feat-story" src="https://d.newsweek.com/en/full/1513906/cul-books-01-748319631.jpg?w=466&h=311&q=90&f=4d4f32656f2e4a794e1a4927e8f60fe4" class="img-fluid">
<a>Gingrich: China Is Far More Dangerous Than We Thought</a>
</div>
<div class="col-sm-3">
<img alt="feat-story" src="https://d.newsweek.com/en/full/1513905/partingshot-stephaniedanler.jpg?w=466&h=311&q=90&f=60ac0710ba088a9e221a33622307c6ef" class="img-fluid">
<a>Gingrich: China Is Far More Dangerous Than We Thought</a>
</div>
<div class="col-sm-3">
<img alt="feat-story" src="https://d.newsweek.com/en/full/1513894/after-deluge.jpg?w=480&h=320&q=90&f=4825b04cdf0a84fe86c9d36a6f886d43" class="img-fluid">
<a>Gingrich: China Is Far More Dangerous Than We Thought</a>
</div>
</div>
<div class="header_ban"><img alt="magazine_banner" src="./assets/images/editor_pick_banner.png" class="mr-auto ml-auto"></div>
<hr>
<div class="row editor">
<div class="col-md-6">
<div class="row">
<div class="col-sm-6">
<img alt="editor_pick" src="https://d.newsweek.com/en/full/1515586/fortnite-world-cup.jpg?w=397&h=295&f=89deb15929337e0ddea32aa25098f199" class="img-fluid">
<a href="#">The First New York City Pride Parade</a>
<p>Exactly one year after Stonewall, Christopher Street Gay Liberation Day was the world's first official Pride celebration. But it almost didn't happen.</p>
</div>
<div class="col-sm-6">
<img alt="editor_pick" src="https://d.newsweek.com/en/full/1515393/us-marine-corps.jpg?w=397&h=295&f=bccf45c21356e00c7be2720865808134" class="img-fluid">
<a href="#">The First New York City Pride Parade</a>
<p>Exactly one year after Stonewall, Christopher Street Gay Liberation Day was the world's first official Pride celebration. But it almost didn't happen.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="right">
<div class="row">
<div class="col-sm-6">
<img alt="editor_pick" src="https://d.newsweek.com/en/full/1508016/border-wall.jpg?w=397&h=295&f=eacc6cb7a8c792db484d242eb6b8bb9e" class="img-fluid">
<a href="#">The First New York City Pride Parade</a>
<p>Exactly one year after Stonewall, Christopher Street Gay Liberation Day was the world's first official Pride celebration. But it almost didn't happen.</p>
</div>
<div class="col-sm-6">
<img alt="editor_pick" src="https://d.newsweek.com/en/full/1514910/donald-trump-xi-jinping-hong-kong-china.jpg?w=397&h=295&f=abc9ce14a3481993f9b8cc08c71744ba" class="img-fluid">
<a href="#">The First New York City Pride Parade</a>
<p>Exactly one year after Stonewall, Christopher Street Gay Liberation Day was the world's first official Pride celebration. But it almost didn't happen.</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-sm-6">
<img alt="editor_pick" src="https://d.newsweek.com/en/full/1515200/amazon-rainforest-deforestation.jpg?w=397&h=295&f=f4f030e51a4fbadfc4e64f57e741115f" class="img-fluid">
<a href="#">The First New York City Pride Parade</a>
<p>Exactly one year after Stonewall, Christopher Street Gay Liberation Day was the world's first official Pride celebration. But it almost didn't happen.</p>
</div>
<div class="col-sm-6">
<img alt="editor_pick" src="https://d.newsweek.com/en/full/1515217/donald-trump-william-barr-npo-memorial-service.jpg?w=397&h=295&f=4d7f79ad599886305d8bffab166dbb50" class="img-fluid">
<a href="#">The First New York City Pride Parade</a>
<p>Exactly one year after Stonewall, Christopher Street Gay Liberation Day was the world's first official Pride celebration. But it almost didn't happen.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="right">
<div class="row">
<div class="col-sm-6">
<img alt="editor_pick" src="https://d.newsweek.com/en/full/1514941/donald-trump-white-house-lawn-mueller-testimony.jpg?w=397&h=295&f=e8d36964092f1408a0598331e18e7a77" class="img-fluid">
<a href="#">The First New York City Pride Parade</a>
<p>Exactly one year after Stonewall, Christopher Street Gay Liberation Day was the world's first official Pride celebration. But it almost didn't happen.</p>
</div>
<div class="col-sm-6">
<img alt="editor_pick" src="https://d.newsweek.com/en/full/1515288/uswnt.jpg?w=397&h=295&f=e47a8dbe0ad5d3309fee9875add3224f" class="img-fluid">
<a href="#">The First New York City Pride Parade</a>
<p>Exactly one year after Stonewall, Christopher Street Gay Liberation Day was the world's first official Pride celebration. But it almost didn't happen.</p>
</div>
</div>
</div>
</div>
</div>
<div class="header_ban"><img alt="magazine_banner" src="./assets/images/featured_slideshow.png" class="mr-auto ml-auto"></div>
<hr>
<div class="row feautures">
<div class="col-sm-4">
<img alt="featured_slideshow" src="https://d.newsweek.com/en/full/1514149/pierre-cardin.jpg?w=397&h=265&l=34&t=27&f=74dc444a96f906b4d71ec24a0df32e52" class="img-fluid">
<a>The History of Drag, from Julian Eltinge to 'RuPaul's Drag Race'</a>
</div>
<div class="col-sm-4">
<img alt="featured_slideshow" src="https://d.newsweek.com/en/full/1511473/oscar-11.jpg?w=397&h=265&f=bb7385a6191b40fe082f868859587304" class="img-fluid">
<a>The History of Drag, from Julian Eltinge to 'RuPaul's Drag Race'</a>
</div>
<div class="col-sm-4">
<img alt="featured_slideshow" src="https://d.newsweek.com/en/full/1509498/lions-safari.jpg?w=397&h=265&l=0&t=0&f=afdd7b8de0f1e30d30fd23ee9d8de1c7" class="img-fluid">
<a>The History of Drag, from Julian Eltinge to 'RuPaul's Drag Race'</a>
</div>
<div class="col-sm-4">
<img alt="featured_slideshow" src="https://d.newsweek.com/en/full/1508579/papua-new-guinea-diving-5.jpg?w=397&h=265&f=ef31ddb1cbe8c40714c16af48aaed9f6" class="img-fluid">
<a>The History of Drag, from Julian Eltinge to 'RuPaul's Drag Race'</a>
</div>
<div class="col-sm-4">
<img alt="featured_slideshow" src="https://d.newsweek.com/en/full/1506562/us-space-rocket-center.jpg?w=397&h=265&f=2e9a742611134322537a4553d9d98e59" class="img-fluid">
<a>The History of Drag, from Julian Eltinge to 'RuPaul's Drag Race'</a>
</div>
<div class="col-sm-4">
<img alt="featured_slideshow" src="https://d.newsweek.com/en/full/1506127/screaming-queens-before-stonewall-comptons-cafeteria-riot.jpg?w=397&h=265&f=8026342d93704d4734e44082b7578d19" class="img-fluid">
<a>The History of Drag, from Julian Eltinge to 'RuPaul's Drag Race'</a>
</div>
</div>
<h3 class="unique">OPINIONS</h3>
<div class="row others">
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515654/dairy-display-apollo-11-butter-ohio-fair.png?w=397&h=265&f=3549220157494b8c234ac1bc491d999a" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515654/dairy-display-apollo-11-butter-ohio-fair.png?w=397&h=265&f=3549220157494b8c234ac1bc491d999a" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-12 col-md-4">
<div class="top">
<img src="https://d.newsweek.com/en/full/1515599/nypd.jpg?w=135&h=90&f=9ecfdb7d0463c8bd68d12fb5d0ae5f9f" alt="other_world" class="img-fluid">
<a> WGC - FedEx St. Jude International : Tee times, Tv and Live Stream Schedule</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1515618/donald-trump.jpg?w=135&h=90&f=f080c5a61984ffc8b5da4fd9dc97ed3a" alt="other_world" class="img-fluid">
<a> WGC - FedEx St. Jude International : Tee times, Tv and Live Stream Schedule</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1515599/nypd.jpg?w=135&h=90&f=9ecfdb7d0463c8bd68d12fb5d0ae5f9f" alt="other_world" class="img-fluid">
<a> WGC - FedEx St. Jude International : Tee times, Tv and Live Stream Schedule</a>
</div>
</div>
<!--ROW END-->
<div class="clearfix_2"></div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515639/burford-primary-school-oxfordshire.jpg?w=397&h=265&f=12fd4e5711a0612dad5908191c1ad42e" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515642/girl-baby.jpg?w=397&h=265&f=65eb1c365d649c3be4632340270f7cac" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-12 col-md-4">
<div class="top">
<img src="https://d.newsweek.com/en/full/1515610/american-airlines.jpg?w=135&h=90&f=907954406e750f3e3307756ce6d89a69" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1515613/meghan-markle.jpg?w=135&h=90&f=e46df5c085d9cdbd2079fec3a3a90f84" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1515580/pride.jpg?w=135&h=90&f=64f3b2c25fa59cfba6aa75df1c819292" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
</div>
<div class="clearfix_2"></div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515326/trump-apple-tariff-iphone.jpg?w=397&h=265&f=47cfc2d759ef8285203abddb63794af0" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515153/dubai-starbucks.jpg?w=397&h=265&f=07f6edd99844860767cdc54cc7b95457" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-12 col-md-4">
<div class="top">
<img src="https://d.newsweek.com/en/full/1510757/matt-shumer-founder-ceo-visos.png?w=135&h=90&f=b26d097e894b7d38e3a525a4ad85b8f4" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1514412/coca-cola.jpg?w=135&h=90&f=afc681bbcd0922f874471afdda7cd8f2" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/338271/06-05-green-09.jpg?w=135&h=90&f=00ff0d6b2b9252047a15fcb2f3b8f196" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
</div>
<div class="clearfix_2"></div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515666/lion-performance.png?w=397&h=265&f=a8c63cd4e59b91ac4b01db48f019eebd" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515624/nasa-tess.jpg?w=397&h=265&f=aedecfae4ba327db3da9673ba5713967" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-12 col-md-4">
<div class="top">
<img src="https://d.newsweek.com/en/full/1112097/slack-down-not-working.jpg?w=135&h=90&f=d04e487f02e36c1a6804fb9b01e17d7c" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1515240/dying-star.jpg?w=135&h=90&f=3d96a298800ace96c6d8b06548acae04" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1515251/tick.jpg?w=135&h=90&f=d79fbeddfefde6f35c6aa6e0a82bfca9" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
</div>
<div class="clearfix_2"></div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515723/irishman-netflix-martin-scorsese.jpg?w=397&h=265&f=67a1c9c61898ce87e231c323b32adfa9" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515710/tacos.jpg?w=397&h=265&f=bb8fd7f4da3b4751225df06d27609ccf" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-12 col-md-4">
<div class="top">
<img src="https://d.newsweek.com/en/full/1515700/toro-embolado.jpg?w=135&h=90&f=95fd292508b31eedd70448140d2b616c" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1515702/jake-paul-tana-mongeau-wedding.jpg?w=135&h=90&f=cc67163d4299f62aac8ed19ea93d1a3f" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1507619/90-day-fiance-star-nicole-nafziger-celebrates-wedding-without-azan.png?w=135&h=90&f=61d43e29f193e49021014a957aebf959" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
</div>
<div class="clearfix_2"></div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515643/ezekiel-elliott-dallas-cowboys.jpg?w=397&h=265&f=284256866afe1444d34192007533f28d" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-6 col-md-4">
<img src="https://d.newsweek.com/en/full/1515600/cori-gauff.jpg?w=397&h=265&f=804bdc35d5fafdfa419aaa5fc3cbc2b6" alt="others" class="img-fluid">
<a href="#">Michael Cohen: Inside White Collar Prison Where Ex-Trump Lawyer Is Headed</a>
</div>
<div class="col-sm-12 col-md-4">
<div class="top">
<img src="https://d.newsweek.com/en/full/1515197/lewis-hamilton.jpg?w=135&h=90&f=51e16e6e4aca7799a6d1853bd56825a7" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1515433/egan-bernal-geraint-thomas.jpg?w=135&h=90&f=2ae9bee8c99d740df074ac896d839132" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1514962/nwsl-utah-royals.jpg?w=135&h=90&f=a939fb7f2c775f278eb882f5c6fe197a" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
</div>
</div>
<div class="clearfix"></div>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-4">
<h5 class="special">SUBSCRIBE</h5>
<div class="panel panel-default before_footer">
<div class="panel-body">
<div class="before_footer_top">
<img src="./assets/images/before_footer_one.png" alt="before_footer" class="img-fluid">
<div>
<h1 class="h1">Digital Only</h1>
<h6 class="h6"><i class="fa fa-check"></i> access to 40+ digital editions</h6>
<h6 class="h6"><i class="fa fa-check"></i> Website access</h6>
<h6 class="h6"><i class="fa fa-check"></i> Daily Newsletter</h6>
</div>
</div>
<hr>
<div class="before_footer_top">
<img src="./assets/images/before_footer_two.png" alt="before_footer" class="img-fluid">
<div>
<h1 class="h1">Digital Only</h1>
<h6 class="h6"><i class="fa fa-check"></i> access to 40+ digital editions</h6>
<h6 class="h6"><i class="fa fa-check"></i> Website access</h6>
<h6 class="h6"><i class="fa fa-check"></i> Daily Newsletter</h6>
</div>
</div>
<button class="btn btn-danger d-block mx-auto c">SUBSCRIBE <i
class="fa fa-chevron-right"></i></button>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-4"></div>
<div class="col-sm-12 col-md-12 col-lg-4">
<h5 class="special">READ MORE</h5>
<div class="top">
<img src="https://d.newsweek.com/en/full/1514962/nwsl-utah-royals.jpg?w=135&h=90&f=a939fb7f2c775f278eb882f5c6fe197a" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1514962/nwsl-utah-royals.jpg?w=135&h=90&f=a939fb7f2c775f278eb882f5c6fe197a" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1514962/nwsl-utah-royals.jpg?w=135&h=90&f=a939fb7f2c775f278eb882f5c6fe197a" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
<hr>
<div class="top">
<img src="https://d.newsweek.com/en/full/1514962/nwsl-utah-royals.jpg?w=135&h=90&f=a939fb7f2c775f278eb882f5c6fe197a" alt="other_world" class="img-fluid">
<a>Last Surviving White Rose Member Just Received Germany's Highest Honor</a>
</div>
</div>
<footer>
<hr>
<div class="upper_foot">
<div><img alt="footer_banner" src="./assets/images/logo.png"> <i>© 2019 NEWSWEEK</i></div>
<div>
<i class="fab fa-facebook fa-2x"></i>
<i class="fab fa-instagram fa-2x"></i>
<i class="fab fa-linkedin fa-2x"></i>
<i class="fab fa-twitter fa-2x"></i>
<i class="icon icon-tumblr"></i>
</div>
</div>
<hr>
<div class="lower_foot">
<div>
<ul>
<li><a>About Us</a></li>
<li><a>Corrections</a></li>
<li><a>Contact Us</a></li>
<li><a>Editorial Guidelines</a></li>
<li><a>Advertise</a></li>
<li><a>Copyright</a></li>
<li><a>Terms & Conditions</a></li>
<li><a>Privacy Policy</a></li>
<li><a>Cookie Policy</a></li>
<li><a>Terms of Sale</a></li>
<li><a>Archive</a></li>
<li><a>Announcements</a></li>
<li><a>Consent preferences</a></li>
</ul>
</div>
<div>
<ul>
<li><a>U.S. Edition</a></li>
<li><a>Middle East</a></li>
<li><a>한국한국</a></li>
<li><a>日本</a></li>
<li><a>Pakistan</a></li>
<li><a>Polska</a></li>
<li><a>România</a></li>
</ul>
</div>
</div>
</footer>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>