-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2372 lines (2303 loc) · 92 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>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Newsweek</title>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<link href="style.css" rel="stylesheet" />
<script
src="https://kit.fontawesome.com/394b992799.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<div
class="container d-flex py-3 mt-3 nav-top justify-content-between align-items-center red"
>
<div class="d-lg-inline-block header-left">
<img src="images/33.webp" alt="" />
<div class="d-none d-lg-block date">Thu, Oct 08, 2020</div>
</div>
<a class="nav-link" href="#"
><svg
class="nw-logo col-lg-3"
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 395.6 60"
style="enable-background: new 0 0 395.6 60"
xml:space="preserve"
>
<g>
<path
class="st0"
d="M58.7,10.8h-5.6v48.3H42.8l-25.1-33v22.1h5.6v10.8H0V48.3h5.6V10.8H0V0h17.6L41,30.7V10.8h-5.6V0h23.2 L58.7,10.8L58.7,10.8z M95.8,38c0,0.9,0,1.8-0.1,2.7H70.3c-0.7,8.2,2.4,10.6,7.1,10.6c3.9,0,6.9-2.6,6.9-6.6h11 c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1c0-10.5,7-21.6,21-21.6C89.9,16.3,95.8,25.6,95.8,38 M159,27.3h-3.7 l-9.4,31.8h-12.5l-5.9-17.4l-5.3,17.4h-12.8L98.8,27.4h-3.7V16.6h22.1v10.7h-5.6l5.8,16.9l7.6-27.6h6.8l9.3,27.6l5-16.9h-5.6V16.6 H159L159,27.3L159,27.3z M174.5,27.8c0,1.5,1.2,2.5,5.4,3.9l6,2c5.5,1.8,12.1,5.9,12.1,13.4c0,8.8-6.6,13-14.7,13 c-6.5,0-11.5-3.2-12.9-4.6V59h-10.8V44.4h10.6c0.3,4.8,4.6,7.3,8.5,7.3c3.2,0,4.7-1.4,4.7-3c0-2-1.2-3.1-6.5-4.8l-5.3-1.8 c-5.4-1.7-11.4-5.7-11.4-12.8c0-8.7,7.7-13.1,14.3-13.1c6.8,0,10.1,1.9,11.8,3.8l0.1-3.3H197v13.3h-11.2c-0.2-3.6-3.7-5.2-7.2-5.2 C175.8,24.8,174.5,26.1,174.5,27.8 M262.8,27.3h-3.7l-9.4,31.8h-12.5l-5.9-17.4L226,59.1h-12.8l-10.6-31.7h-3.7V16.6h22.1v10.7 h-5.6l5.8,16.9l7.6-27.6h6.8l9.3,27.7l5-16.9h-5.6V16.6h18.5V27.3z M302,37.9c0,0.9,0,1.8-0.1,2.7h-25.4 c-0.7,8.2,2.4,10.6,7.1,10.6c3.9,0,6.9-2.6,6.9-6.6h11c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1 c0-10.5,7-21.6,21-21.6C296.1,16.2,302,25.5,302,37.9 M343.9,37.8c0,0.9,0,1.8-0.1,2.7h-25.4c-0.7,8.2,2.4,10.6,7.1,10.6 c3.9,0,6.9-2.6,6.9-6.6h11c-0.3,7.2-4,15.4-18.5,15.4c-14.5,0-21.3-10.5-21.3-22.1c0-10.5,7-21.6,21-21.6 C338,16.1,343.9,25.4,343.9,37.8 M389.9,59h-12.8l-13.3-17.3l-4.3,3.2v3.4h3.8V59h-19.6V48.3h3.7V10.6h-5.6V0h17.8v33.9l8.9-6.5 h-5.6V16.6h23.9v10.8h-3.7l-9.3,7l10.7,13.9h5.6L389.9,59L389.9,59z M395.6,56.6c0,0.5-0.1,0.9-0.4,1.2c-0.2,0.4-0.5,0.7-0.9,0.9 c-0.4,0.2-0.8,0.4-1.3,0.4c-0.5,0-0.9-0.1-1.2-0.4c-0.4-0.2-0.7-0.5-0.9-0.9c-0.2-0.4-0.4-0.8-0.4-1.2c0-0.5,0.1-0.9,0.4-1.2 c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.2-0.4c0.5,0,0.9,0.1,1.3,0.4c0.4,0.2,0.7,0.5,0.9,0.9 C395.5,55.8,395.6,56.2,395.6,56.6 M394.6,58c0.4-0.4,0.6-0.9,0.6-1.4c0-0.6-0.2-1-0.6-1.4s-0.9-0.6-1.4-0.6s-1,0.2-1.4,0.6 c-0.4,0.4-0.6,0.9-0.6,1.4c0,0.6,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.4,0.6S394.2,58.4,394.6,58 M393.6,56.8c0.1,0.1,0.2,0.1,0.2,0.1 c0.1,0.1,0.2,0.2,0.2,0.3c0,0,0.2,0.3,0.4,0.8h-0.8c-0.3-0.5-0.4-0.8-0.5-0.9c-0.1-0.1-0.2-0.2-0.3-0.2c0,0-0.1,0-0.1,0v1.1h-0.6 v-2.6h1.2c0.4,0,0.6,0.1,0.7,0.2c0.2,0.2,0.2,0.3,0.2,0.6c0,0.2-0.1,0.4-0.2,0.5C393.9,56.6,393.8,56.7,393.6,56.8 M393.5,56.3 c0.1-0.1,0.1-0.2,0.1-0.3s-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.1-0.4-0.1h-0.3v0.7h0.3C393.3,56.4,393.4,56.4,393.5,56.3 M318.4,33.5 h13.9c0-6-3.9-8.4-6.8-8.4C322.1,25.2,318.6,27.9,318.4,33.5 M276.5,33.6h13.9c0-6-3.9-8.4-6.8-8.4C280.3,25.2,276.8,28,276.5,33.6 M70.3,33.7h13.9c0-6-3.9-8.4-6.8-8.4C74.1,25.3,70.6,28.1,70.3,33.7"
></path>
</g>
</svg>
</a>
<div
class="col-md-4 d-flex align-items-center h-100 header-right col-sm-6 col-lg-3"
>
<i class="fa fa-user pro-fa d-md-none" aria-hidden="true"></i>
<button
class="d-none d-md-block btn text-light text-uppercase btn-1 fw-bold"
type="button"
>
login
</button>
<button
class="btn rounded-pill border-0 fw-bold text-uppercase btn-2"
type="button"
>
Subscribe
</button>
<button type="button" class="btn btn-link">
<i
class="d-lg-none d-md-block fa ham-fa fa-bars"
aria-hidden="true"
></i>
</button>
</div>
</div>
</header>
<nav class="container navbar-expand-lg bg-white">
<ul
class="nav bottom-nav collapse navbar-collapse text-capitalize text-dark border-bottom"
>
<li class="flex-grow-1 nav-item border-right">
<a class="nav-link" href="#">U.S</a>
</li>
<li class="flex-grow-1 nav-item border-right">
<a class="nav-link" href="#">world</a>
</li>
<li class="flex-grow-1 nav-item">
<a class="nav-link border-right" href="#">business</a>
</li>
<li class="flex-grow-1 nav-item">
<a class="nav-link border-right" href="#">tech & science</a>
</li>
<li class="flex-grow-1 nav-item border-right">
<a class="nav-link" href="#">culture</a>
</li>
<li class="flex-grow-1 nav-item border-right">
<a class="nav-link" href="#">newsgeek</a>
</li>
<li class="flex-grow-1 nav-item border-right">
<a class="nav-link" href="#">sports</a>
</li>
<li class="flex-grow-1 nav-item border-right">
<a class="nav-link" href="#">health</a>
</li>
<li class="flex-grow-1 nav-item border-right">
<a class="nav-link" href="#">the debate</a>
</li>
<li class="flex-grow-1 nav-item border-right">
<a class="nav-link" href="#">vantage</a>
</li>
<li class="flex-grow-1 nav-item">
<a class="nav-link" href="#">weather</a>
</li>
<li class="flex-grow-1 nav-item">
<form action="POST">
<input
type="text"
class="form-control form-control-sm border-0"
placeholder="search"
/><i class="fa fa-search top-fa" aria-hidden="true"></i>
</form>
</li>
</ul>
<ul
class="trending-list navbar-nav nav-bottom text-uppercase border-bottom collapse navbar-collapse flex-nowrap"
>
<li class="nav-item">
<a class="nav-link disabled text-dark" href="#">trending</a>
</li>
<li class="nav-item">
<a class="nav-link text-muted" href="#">donald trump</a>
</li>
<li class="nav-item">
<a class="nav-link text-muted" href="#">joe biden</a>
</li>
<li class="nav-item">
<a class="nav-link text-muted" href="#">stimulus package</a>
</li>
<li class="nav-item">
<a class="nav-link text-muted" href="#">coronavirus</a>
</li>
<li class="nav-item">
<a class="nav-link text-muted" href="#">2020 election</a>
</li>
</ul>
</nav>
<!-- COLUMNS -->
<div class="container">
<div class="row">
<!-- COL 1 -->
<div class="col-12 col-md-4 col-lg-3 mt-3">
<!-- #1 -->
<h5 class="text-muted text-uppercase">
<strong> featured stories </strong>
</h5>
<div class="col-img d-flex">
<a href=""
><img
src="https://d.newsweek.com/en/full/1711616/donald-trump.webp?w=397&h=265&q=90&f=d759057143d283aa0ea0ed13fba5450a"
alt=""
/></a>
<div class="topic"><a href="">U.S.</a></div>
</div>
<h4>
<a href="#">
The 73 People Pardoned by Donald Trump on His Last Day As
President
</a>
</h4>
<p>
Notable people pardoned by Trump today include former White House
chief strategist Steve Bannon and rapper Lil Wayne.
</p>
<!-- #2 -->
<div class="col-img d-flex">
<a href=""
><img
src="https://web.archive.org/web/20210120125445im_/https://d.newsweek.com/en/full/1711585/trump-waves-south-lawn.webp?w=397&h=265&q=90&f=b1d4597db1fa3acb99946d38d0805862"
alt=""
/></a>
<div class="topic"><a href="">POLITICS</a></div>
</div>
<h4>
<a href="#">
Donald Trump Can Issue Secret Pardons, but They're Risky
</a>
</h4>
<p>
Trump chose not to issue pardons for himself of his personal
attorney, former New York Mayor Rudy Giuliani.
</p>
<!-- #3 -->
<div class="col-img d-flex">
<a href=""
><img
src="https://web.archive.org/web/20210120125445im_/https://d.newsweek.com/en/full/1702746/newsweek-expert-forum.png?w=397&h=265&q=90&f=2b0debf48d5c11f398db27d2c484db40"
alt=""
/></a>
<div class="topic"><a href="">EXPERTS</a></div>
</div>
<h4>
<a href="#">
Newsweek Announces Launch of the Newsweek Expert Forum
</a>
</h4>
<p>
Newsweek Expert Forum creates cohort of thought leaders, pioneering
thinkers to share insights, expertise from range of professions,
industries.
</p>
<!-- #4 -->
<div class="col-img d-flex">
<a href=""
><img
src="https://web.archive.org/web/20210120125445im_/https://d.newsweek.com/en/full/1711574/trump-steps-off-air-force-one.jpg?w=397&h=265&q=90&f=0a41e0b42272b700b5e88d364b127980"
alt=""
/></a>
<div class="topic"><a href="">POLITICS</a></div>
</div>
<h4>
<a href="#"> Can Joe Biden Rescind Donald Trump's Pardons? </a>
</h4>
<p>
The president did not issue pardons for himself, his children or for
former New York Mayor Rudy Giuliani.
</p>
<!-- #5 -->
<div class="col-img d-flex">
<a href=""
><img
src="https://web.archive.org/web/20210120125445im_/https://d.newsweek.com/en/full/1711670/biden-delivers-remarks-during-memorial-service.jpg?w=397&h=265&q=90&f=7fb506e1c1fd2cf280d10c2679b7a441"
alt=""
/></a>
<div class="topic"><a href=""> POLITICS</a></div>
</div>
<h4>
<a href="#">
Joe Biden Immigration Orders Upend Donald Trump's Legacy</a
>
</h4>
<p>
The Biden Administration will issue an order stopping construction
of the border wall on its first day.
</p>
<!-- insights -->
<div class="col-img d-flex">
<a href=""
><img
src="https://d.newsweek.com/en/full/1701186/ph3095-01.jpg"
alt=""
/></a>
<div class="insight"><a href=""> sponsored insight</a></div>
</div>
<h4><a href="#"> Hokkaido: Japan’s Northern Frontier</a></h4>
<p>
Featuring a unique history, uninhibited wildness and at times
otherworldly natural spectacles, Hokkaido offers an experience that
is completely different from the rest of Japan.
</p>
<div class="col-img d-flex">
<a href=""
><img
src="https://d.newsweek.com/en/full/1677235/american-school-doha.jpg?w=500&h=333&f=dc8bef3e2240004c9f605c245b05c06e"
alt=""
/></a>
<div class="insight"><a href=""> sponsored insight</a></div>
</div>
<h4><a href="#"> What Makes International Schools so Special?</a></h4>
<p>
One of the single most important decisions you make for your child
is whom to entrust with their education. See why so many parents are
turning to International Schools.
</p>
<div class="col-img d-flex">
<a href="#"
><img
src="https://d.newsweek.com/en/full/1680316/americas-most-responsible-companies-2021.png?w=500&h=333&f=ae10b886f06d2f293296bc4d2f90dda0"
alt=""
/></a>
<div class="insight"><a href="#"> sponsored insight</a></div>
</div>
<h4><a href="#"> America's Most Responsible Companies 2021</a></h4>
<p>
We partnered with Statista to rank the country's Most Responsible
Companies. They share the values that we all prioritize, and that's
worth recognizing in 2021
</p>
<div class="col-img d-flex">
<a href="#"
><img
src="https://d.newsweek.com/en/full/1638920/image-3-this-startup-making.jpg?w=500&h=333&f=d3ab894bb4a4f0a8af53551fabfb306d"
alt=""
/></a>
<div class="insight"><a href="#"> sponsored insight</a></div>
</div>
<h4>
<a href="#">
This Startup Is Making Long Distance Real Estate Investing
Possible for Millennials</a
>
</h4>
<p>
75% of Roofstock users are first-time real estate investors, and
more than half are under 35.
</p>
</div>
<!-- COL 2-->
<div class="col-lg-6 col-md-8 col-sm-12 mt-3 text-uppercase">
<h5 class="text-muted"><strong> top stories </strong></h5>
<div class="row">
<div class="card border-0">
<a href="#"
><img
src="assets/top-story-biden.webp"
class="card-img-top rounded-0"
alt="..."
/></a>
<div class="article-body">
<h5 class="card-title font-weight-bold">
Biden Campaign Targets Latino Men, Eyeing Obama-Level Hispanic
Support
</h5>
<p class="card-text text-secondary story-paragraph">
Joe Biden's campaign is launching a new voter mobilization
effort aimed at Hispanic men as it looks to maximize its share
of the Latino vote, with just 22 days left before Election
Day, Newsweek has learned.
</p>
</div>
</div>
</div>
<a href="#"
><h6 class="text-secondary text-uppercase mt-4">my turn</h6></a
>
<div class="row">
<div class="col-sm-12 col-md-4 col-lg-4">
<a href="#"
><img
src="assets/my-turn1.webp"
class="card-img-top rounded-0"
alt="..."
/></a>
<div class="article-body">
<a href="#"
><p
class="card-text text-secondary mt-2 mb-4 story-paragraph"
>
'My Fiancé and I Met Across Balconies in Verona, Home of
Romeo and Juliet'.
</p></a
>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-4">
<a href="#"
><img
src="assets/my-turn2.webp"
class="card-img-top rounded-0"
alt="..."
/></a>
<div class="article-body">
<a href="#"
><p
class="card-text text-secondary mt-2 mb-4 story-paragraph"
>
'I'm 99, And the Oldest Park Ranger in America'
</p>
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-4">
<a href="#"
><img
src="assets/my-turn3.webp"
class="card-img-top rounded-0"
alt="..."
/></a>
<div class="article-body">
<a href="#"
><p
class="card-text text-secondary mt-2 mb-4 story-paragraph"
>
'I Divorced In April. Now I Live Across The World With A New
Love'
</p></a
>
</div>
</div>
</div>
<!-- 2nd row -->
<a href="#"
><h6 class="text-secondary text-uppercase mt-4">
culture & travel
</h6></a
>
<div class="row">
<div class="col-sm-12 col-md-4 col-lg-4">
<a href="#"
><img
src="assets/my-turn4.webp"
class="card-img-top rounded-0"
alt="..."
/></a>
<div class="article-body">
<a href="#"
><p
class="card-text text-secondary mt-2 mb-4 story-paragraph"
>
Missing Flying? Flights to Nowhere Take Off As a New Travel
Trend
</p></a
>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-4">
<a href="#"
><img
src="assets/my-turn5.webp"
class="card-img-top rounded-0"
alt="..."
/></a>
<div class="article-body">
<a href="#"
><p
class="card-text text-secondary mt-2 mb-4 story-paragraph"
>
100 Best Rock Albums of All Time, According to Critics
</p></a
>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-4">
<a href="#"
><img
src="assets/my-turn6.webp"
class="card-img-top rounded-0"
alt="..."
/></a>
<div class="article-body">
<a href="#"
><p
class="card-text text-secondary mt-2 mb-4 story-paragraph"
>
Plot an Escape Around the World With 'Accidentally Wes
Anderson'
</p></a
>
</div>
</div>
</div>
<!-- 3rd row -->
<h6 class="text-secondary text-uppercase mt-3">more stories</h6>
<!-- try -->
<div class="media border-top pt-3 pb-3">
<article class="story">
<div class="d-flex">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<h6 class="text-secondary text-uppercase mt-3">latest stories</h6>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
<article class="story border-top">
<div class="d-flex mt-3">
<figure class="story__img-box me-2">
<a href="#"
><img
src="assets/mitch-mcconnell.webp"
alt="joe biden in the congress"
class="story__img"
/></a>
</figure>
<div class="story__text-box">
<h4 class="story__title">
<a href="#" class="story__link"
>Joe Biden and Xi Jinping's Diplomats to Talk Over 'Deep
Disagreements'</a
>
</h4>
<p class="story-paragraph">
Secretary of State Antony Blinken will be joined by national
security adviser Jake Sullivan in a meeting with senior
Chinese diplomats Yang Jiechi and Wang Yi in Alaska next
</p>
</div>
</div>
</article>
</div>
</div>
<!-- COL 3 -->
<div class="col-12 col-md-10 col-lg-3 mt-3">
<h5 class="text-muted text-uppercase">
<strong> the debate </strong>
</h5>
<!-- CONTESTANT 1 -->
<div class="d-flex flex-column debate">
<div class="d-flex pb-3 pt-3 contestant border-top">
<div class="img-container">
<a href="#"
><img
src="https://d.newsweek.com/en/full/1673623/froma-harrop.png?w=63&h=63&f=2ba48b46c4bcf031c010ff486c04d55b"
alt=""
/></a>
</div>
<div class="d-flex flex-column debate-info">
<a href="#">
<strong> Media Have Every Right to Cancel Trump </strong></a
>
<p>BY FROMA HARROP</p>
</div>
</div>
<!-- -->
<div class="vs-container mt-1 mb-1">
<div class="versus d-flex rounded-circle">VS</div>
</div>
<!-- -->
<!-- CONTESTANT 2 -->
<div class="d-flex pt-3 border-bottom">
<div class="d-flex flex-column debate-info">
<a href="#">
<strong>
After Parler Ban, Rein in Big Tech Now or Cease Being Free
Citizens
</strong></a
>
<p>BY RACHEL BOVARD</p>
</div>
<div class="img-container">
<a href="#"
><img
src="https://d.newsweek.com/en/full/1591942/rachel-bovard.webp?w=63&h=63&f=4015164d66f974605b08657edb079340"
alt=""
/></a>
</div>
</div>
<!-- OPINION -->
<h5 class="text-muted mt-3 mb-3"><strong> OPINION </strong></h5>
<!-- 1 -->
<div class="d-flex flex-column debate">
<div class="d-flex border-bottom pb-2">
<div class="img-container">
<a href="#"
><img
src="https://d.newsweek.com/en/full/1711112/frank-cilluffo-stewart-baker.webp?w=63&h=63&f=c8715cf70500acc34647c1513b28d46f"
alt=""
/></a>
</div>
<div class="d-flex flex-column debate-info">
<a href="#">
<strong> U.S. Supply Chain: Stop Driving Blind </strong></a
>
<p>BY FRANK CILLUFFO AND STEWART BAKER</p>
</div>
</div>
</div>
<!-- 2 -->
<div class="d-flex flex-column debate">
<div class="d-flex border-bottom pt-3">
<div class="img-container">
<a href="#">
<img
src="https://d.newsweek.com/en/full/1685792/rick-scott.webp?w=63&h=63&f=a0a140e366531ff91944134bb9f0628f"
alt=""
/></a>
</div>
<div class="d-flex flex-column debate-info">
<a href="#">
<strong>
Violence at the Capitol, Congress Must Ensure Election
Integrity After</strong
></a
>
<p>BY RICK SCOTT</p>
</div>
</div>
</div>
<!-- 3 -->
<div class="d-flex flex-column debate">
<div class="d-flex border-bottom pt-3">
<div class="img-container">
<img
src="https://d.newsweek.com/en/full/1563625/nigel-farage.webp?w=63&h=63&f=241bf306fe74b397c2ecf4116cc79b62"
alt=""
/>
</div>
<div class="d-flex flex-column debate-info">
<a href="#">
<strong>
Despite January 6, Trump Leaves a Legacy of Trust with
Voters
</strong></a
>
<p>BY NIGEL FARAGE</p>
</div>
</div>
</div>
<!-- 4 -->
<div class="d-flex flex-column debate">
<div class="d-flex border-bottom pt-3">
<div class="img-container">
<img
src="https://d.newsweek.com/en/full/1666341/philip-jeffery.webp?w=63&h=63&f=e4c1005d67b9f7781272f75a3c1351d7"
alt=""
/>
</div>
<div class="d-flex flex-column debate-info">
<a href="#">
<strong>
Narcissism and Nihilism on Capitol Hill
</strong></a
>
<p>BY PHILIP JEFFERY</p>
</div>
</div>
</div>
<!-- 5 -->
<div class="d-flex flex-column debate">
<div class="d-flex border-bottom pt-3">
<div class="img-container">
<img
src="https://d.newsweek.com/en/full/1593404/bruce-abramson.webp?w=63&h=63&f=91f1ebcd06e30cecf14cfc88d76785a1"
alt=""
/>
</div>
<div class="d-flex flex-column debate-info">
<a href="#">