-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1186 lines (993 loc) · 49 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 name="viewport" content="width=device-width, initial-scale=1">
<title>Complete Bootstrap 4 Website Layout</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" rel="stylesheet">
<link href="index.css" rel="stylesheet">
<link href="reset.css" rel="stylesheet">
</head>
<body class="bg-light body container-fluid">
<nav class="navbar navbar-expand-lg navbar-light container-fluid d-flex flex-column w-100 flex-nowrap">
<!-- sticky top -->
<div class="container-fluid row upper-nav p-1">
<div class="col-lg-3 col-md-2 col-sm-2 weather-date text-white">
<div class="weather">
<p> <i class="fas fa-cloud-sun-rain"></i> 27° Lagos, NG ></p>
</div>
<div class="date">
<time datetime="2008-02-14 20:00">Tue, February 03, 2020</time>
</div>
</div>
<a href="#" class="navbar-brand col-6 col-sm-5 col-md-4 text-center">
<img src="images/svgexport-1.png" alt="logo"></a>
<div
class="col-3 subscribe d-lg-flex col-sm-6 flex-row flex-lg-nowrap mt-4 col-md-4 row align-items-center justify-content-baseline">
<h4 class="text-white"><strong>SIGN IN</strong></h4>
<button class="btn btn-outline-light btn-md rounded-0 bg-white ml-2 subscribe-btn p-0">SUBSCRIBE ></button>
</div>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarResponsive"
aria-expanded="false">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbarResponsive">
<div class="navlinks container-fluid bg-white">
<ul class="navbar-nav d-flex justify-content-center align-content-between align-items-center flex-grow-1">
<li
class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex border-right">
<a href="#" class="nav-link text-dark">U.S</a>
</li>
<li
class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex border-right">
<a href="#" class="nav-link text-dark">World</a>
</li>
<li
class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex border-right">
<a href="#" class="nav-link text-dark">Business</a>
</li>
<li
class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex border-right flex-nowrap">
<a href="#" class="nav-link text-dark">Tech & Science</a>
</li>
<li
class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex border-right">
<a href="#" class="nav-link text-dark">Culture</a>
</li>
<li
class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex border-right">
<a href="#" class="nav-link text-dark">Newsgeek</a>
</li>
<li
class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex border-right">
<a href="#" class="nav-link text-dark">Sports</a>
</li>
<li
class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex border-right">
<a href="#" class="nav-link text-dark">Health</a>
</li>
<li
class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex border-right flex-nowrap">
<a href="#" class="nav-link text-dark">The Debate</a>
</li>
<li
class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex border-right ">
<a href="#" class="nav-link text-dark ">Vantage</a>
</li>
<li class="nav-item text-center justify-content-center align-self-center .order-sm-1 flex-fill d-flex">
<a href="#" class="nav-link text-dark">Weather</a>
</li>
<li class="nav-item text-center .order-sm-0 flex-fill d-flex">
<input type="text" placeholder="Search" style="font-weight: 100;" class="border-0"> <i
class="fas fa-search z-index-99 position-absolute"></i>
</li>
</ul>
</div>
</div>
</nav>
<div class=" main mt-2 bg-white col-md-12 col-sm-11 col-lg-12 container-fluid">
<!-- Featured stories-->
<section class="col-lg-4 col-md-5 col-sm-12">
<div class="featured-stories">
<h4 class="featured"> FEATURED STORIES</h4>
<div>
<a href="#" class="bg-light text-danger p-2 wrap2">U.S.</a>
<img src="images/coronavirus.webp" alt="coronavirus" class="position-relative">
</div>
<h3 class="img-title mb-2">Coronavirus Update: Cases Outside China Spike 26 Percent in Single Day</h3>
<p>On Monday, the European Commission announced 232 million euros would be mobilized to help fight the virus.
</p>
</div>
<!-- culture -->
<div class="featured-stories">
<div>
<a href="#" class="bg-light text-danger p-2 wrap2">CULTURE</a>
<img src="images/annabella-sciorra.webp" alt="coronavirus" class="position-relative"></div>
<h3 class="img-title mb-2">Annabella Sciorra Thanked by Celebrities After Harvey Weinstein Verdict</h3>
<p>After providing testimony against the Hollywood movie producer, the name of actress Annabella Sciorra was
trending on Twitter by users following the conviction of Harvey Weinstein.
</p>
<hr>
<p><b>South Korea Has Second Most Coronavirus Cases After China, President Says Country Faces 'Grave Turning
Point'</b></p>
<hr>
</div>
<!-- newsgeek -->
<div class="featured-stories mt-2">
<div>
<a href="#" class="bg-light text-danger p-2 wrap2">NEWSGEEK</a>
<img src="images/hiddenfig.webp" alt="coronavirus" class="position-relative"></div>
<h3 class="img-title mb-2">Five Facts About Late NASA 'Hidden Figures' Mathematician Katherine Johnson</h3>
<p> Here are five facts about the extraordinary NASA mathematician, Katherine Johnson, who died at the age of
101, whose trailblazing accomplishments were depicted in "Hidden Figures."
</p>
</div>
<!-- us-->
<div class="featured-stories mt-2">
<div>
<a href="#" class="bg-light text-danger p-2 wrap2">U.S</a>
<img src="images/armadillo.webp" alt="coronavirus" class="position-relative"></div>
<h3 class="img-title mb-2">Annabella Sciorra Thanked by Celebrities After Harvey Weinstein Verdict</h3>
<p>After providing testimony against the Hollywood movie producer, the name of actress Annabella Sciorra was
trending on Twitter by users following the conviction of Harvey Weinstein.
</p>
</div>
<!-- newsgeek -->
<div class="featured-stories mt-4">
<div>
<a href="#" class="bg-light text-danger p-2 wrap2">NEWSGEEK</a>
<img src="images/hiddenfig.webp" alt="coronavirus" class="position-relative"></div>
<h3 class="img-title mb-2">Five Facts About Late NASA 'Hidden Figures' Mathematician Katherine Johnson</h3>
<p> Here are five facts about the extraordinary NASA mathematician, Katherine Johnson, who died at the age of
101, whose trailblazing accomplishments were depicted in "Hidden Figures."
</p>
</div>
<!-- newsgeek -->
<div class="featured-stories stories-2 mt-4">
<div>
<a href="#" class="bg-light text-danger p-2 wrap2">NEWSGEEK</a>
<img src="images/hiddenfig.webp" alt="coronavirus" class="position-relative"></div>
<h3 class="img-title mb-2">Five Facts About Late NASA 'Hidden Figures' Mathematician Katherine Johnson</h3>
<p> Here are five facts about the extraordinary NASA mathematician, Katherine Johnson, who died at the age of
101, whose trailblazing accomplishments were depicted in "Hidden Figures."
</p>
</div>
<!-- newsgeek -->
<div class="featured-stories stories-2 mt-4">
<div>
<a href="#" class="bg-light text-danger p-2 wrap2">NEWSGEEK</a>
<img src="images/hiddenfig.webp" alt="coronavirus" class="position-relative"></div>
<h3 class="img-title mb-2">Five Facts About Late NASA 'Hidden Figures' Mathematician Katherine Johnson</h3>
<p> Here are five facts about the extraordinary NASA mathematician, Katherine Johnson, who died at the age of
101, whose trailblazing accomplishments were depicted in "Hidden Figures."
</p>
</div>
</section>
<!-- middle section -->
<section class="col-lg-5 col-md-7 col-sm-12">
<!-- top stories -->
<div class="top-story col-lg-12 col-md-12 col-sm-12">
<h4 class="featured"> TOP STORIES</h4>
<div>
<a href="#" class="bg-light text-danger p-2 wrap3">U.S.</a>
<img src="images/harvey-weinstein.webp" alt="coronavirus" class="card-img-top top-story-img">
</div>
<h3 class="img-title mb-2">Harvey Weinstein Convicted on Two Counts in Sexual Assault Case</h3>
<p>The disgraced movie producer was found guilty of rape and a felony sex crime but was acquitted of other
charges, including predatory sexual assault.
</p>
<hr>
<div class="trump-middle row col-lg-12">
<img src="images/nikkei.webp" class="" alt="trump">
<div class="float-right col-lg-9">
<h4 class="img-title mb-2">Trump Blames CDC for Spooking Investors With Coronavirus Fears</h4>
<p>The president has informed his advisers not to make dire predictions about the financial impact of the
virus, The Washington Post reported</p>
</div>
</div>
<div class="updates">
<hr>
<strong>Coronavirus Update: Map Shows More Than 81,000 Cases</strong>
<hr>
</div>
</div>
<!-- culture and travel -->
<div class="row culture-travel mt-3">
<h4 class="featured mb-3 ml-3"> CULTURE & TRAVEL</h4>
<div class="row col-lg-12">
<div class="col-lg-4 col-sm-12 col-md-4">
<div>
<a href="#" class="bg-info text-dark p-1 wrap4">News</a>
<img src="images/coronaitaly.webp" alt="coronavirus" class="position-relative">
</div>
<h3 class="img-titles">Coronavirus Italy Update: Europe's First Major Outbreak Sees Fourth Death</h3>
<p class="img-p">Newsweek's top fiction and nonfiction spring books to entertain and excite your
imagination from the
blustery days of late winter until the sun shines in the spring.</p>
</div>
<div class="col-lg-4 col-sm-12 col-md-4">
<div>
<a href="#" class="bg-info text-dark p-1 wrap4">Books</a>
<img src="images/cakebook.webp" alt="coronavirus" class="position-relative">
</div>
<h3 class="img-titles">40 Must-Read Fiction and Nonfiction Books to Savor This Spring</h3>
<p class="img-p">Newsweek's top fiction and nonfiction spring books to entertain and excite your
imagination from the
blustery days of late winter until the sun shines in the spring.</p>
</div>
<div class="col-lg-4 col-sm-12 col-md-4">
<div>
<a href="#" class="bg-info text-dark p-1 wrap4">Travel </a>
<img src="images/travel.webp" alt="coronavirus" class="position-relative">
</div>
<h3 class="img-titles">Sacred Journeys Around the World</h3>
<p class="img-p">Newsweek's top fiction and nonfiction spring books to entertain and excite your
imagination from the
blustery days of late winter until the sun shines in the spring.</p>
</div>
<!-- more stories -->
<div class="more mt-5 col-sm-12">
<h4 class="featured">MORE STORIES </h4>
<hr class="my-4 mt-2">
<div class="more-news-info col-12">
<div class="row mt-3">
<img src="images/black.webp" class="more-pres col-md-4 col-sm-4" alt="corona">
<p class="col-lg-8 col-md-8 col-sm-8"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong>
Patrisse Cullors said the former vice president was part of an "old establishment" and needed to
make
way for "new leadership" in the Democratic party.</p>
</div>
<hr class="my-4">
<div class="row mt-3">
<img src="images/black.webp" class="more-pres col-md-4 col-sm-4" alt="corona">
<p class="col-lg-8 col-md-8 col-sm-8"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong>
Patrisse Cullors said the former vice president was part of an "old establishment" and needed to
make
way for "new leadership" in the Democratic party.</p>
</div>
<hr class="my-4">
<div class="row mt-3">
<img src="images/black.webp" class="more-pres col-md-4 col-sm-4" alt="corona">
<p class="col-lg-8 col-md-8 col-sm-8"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong>
Patrisse Cullors said the former vice president was part of an "old establishment" and needed to
make
way for "new leadership" in the Democratic party.</p>
</div>
<hr class="my-4">
<div class="row mt-3">
<img src="images/black.webp" class="more-pres col-md-4 col-sm-4" alt="corona">
<p class="col-lg-8 col-md-8 col-sm-8"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong>
Patrisse Cullors said the former vice president was part of an "old establishment" and needed to
make
way for "new leadership" in the Democratic party.</p>
</div>
<hr class="my-4">
<div class="row mt-3">
<img src="images/black.webp" class="more-pres col-md-4 col-sm-4" alt="corona">
<p class="col-lg-8 col-md-8 col-sm-8"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong>
Patrisse Cullors said the former vice president was part of an "old establishment" and needed to
make
way for "new leadership" in the Democratic party.</p>
</div>
<hr class="my-4">
<div class="row mt-3">
<img src="images/black.webp" class="more-pres col-md-4 col-sm-4" alt="corona">
<p class="col-lg-8 col-md-8 col-sm-8"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong>
Patrisse Cullors said the former vice president was part of an "old establishment" and needed to
make
way for "new leadership" in the Democratic party.</p>
</div>
<hr class="my-4">
<div class="row mt-3 stories-1 new-news">
<img src="images/black.webp" class="more-pres col-md-4 col-sm-4" alt="corona">
<p class="col-lg-8 col-md-8 col-sm-8"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong>
Patrisse Cullors said the former vice president was part of an "old establishment" and needed to
make
way for "new leadership" in the Democratic party.</p>
</div>
<hr class="my-4">
<div class="row mt-3 stories-1 new-news">
<img src="images/black.webp" class="more-pres col-md-4 col-sm-4" alt="corona">
<p class="col-lg-8 col-md-8 col-sm-8"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong>
Patrisse Cullors said the former vice president was part of an "old establishment" and needed to
make
way for "new leadership" in the Democratic party.</p>
</div>
<hr class="my-4">
<div class="row mt-3 new-news stories-1">
<img src="images/black.webp" class="more-pres col-md-4 col-sm-4" alt="corona">
<p class="col-lg-8 col-md-8 col-sm-8"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong>
Patrisse Cullors said the former vice president was part of an "old establishment" and needed to
make
way for "new leadership" in the Democratic party.</p>
</div>
<hr class="my-4">
</div>
</div>
</div>
</div>
</section>
<section class="col-lg-3 col-md-12 col-sm-12 col3">
<div class="opinion col-12">
<h4 class="featured"> OPINION</h4>
<div class="opinions">
<div class="opinion-info row d-flex flex-row flex-nowrap">
<img src="images/opinion6.webp" class="pr-2 opinion-img" alt="opinions">
<p class="col-lg-10 col-xl-11">
Hal Donahue Is Scouting Worth Saving? Not Under the Boy Scouts of America
<br><span class="text-secondary">BY HAL DONAHUE</span></p>
</div>
<hr>
<div class="opinion-info row d-flex flex-row flex-nowrap">
<img src="images/opinion6.webp" class="pr-2 opinion-img" alt="opinions">
<p class="col-lg-10 col-xl-11">
Hal Donahue Is Scouting Worth Saving? Not Under the Boy Scouts of America<br>
<span class="text-secondary">BY HAL DONAHUE</span></p>
</div>
<hr>
<div class="opinion-info row d-flex flex-row flex-nowrap">
<img src="images/opinion6.webp" class="pr-2 opinion-img" alt="opinions">
<p class="col-lg-10 col-xl-11">
Hal Donahue Is Scouting Worth Saving? Not Under the Boy Scouts of America
<br><span class="text-secondary">BY HAL DONAHUE</span></p>
</div>
<hr>
<div class="opinion-info row d-flex flex-row flex-nowrap">
<img src="images/opinion6.webp" class="pr-2 opinion-img" alt="opinions">
<p class="col-lg-10 col-xl-11">
Hal Donahue Is Scouting Worth Saving? Not Under the Boy Scouts of America
<br><span class="text-secondary">BY HAL DONAHUE</span></p>
</div>
<hr>
<div class="opinion-info row d-flex flex-row flex-nowrap">
<img src="images/opinion6.webp" class="pr-2 opinion-img" alt="opinions">
<p class="col-lg-10 col-xl-11">
Hal Donahue Is Scouting Worth Saving? Not Under the Boy Scouts of America<br>
<span class="text-secondary">BY HAL DONAHUE</span></p>
</div>
<hr>
<div class="opinion-info row d-flex flex-row flex-nowrap">
<img src="images/opinion6.webp" class="pr-2 opinion-img" alt="opinions">
<p class="col-lg-10 col-xl-11">
Hal Donahue Is Scouting Worth Saving? Not Under the Boy Scouts of America<br>
<span class="text-secondary">BY HAL DONAHUE</span></p>
</div>
</div>
</div>
<!-- debate -->
<div class="debate col-12 mt-5">
<h4 class="featured"> THE DEBATE</h4>
<hr class="border-bottom debate-bar">
<div class="versus">
<div class="debaters row ">
<img src="images/annabella-sciorra.webp" class="debate-img col-lg-5 col-md-3 col-sm-4 col-xl-4"
alt="debate">
<p class="col-lg-7 col-md-9 col-xl-7 col-sm-8">Say Bye to Media Coverage If Pelosi Succeeds in Censoring Our
Video</p>
</div>
<hr class="border-bottom pb-1">
<div class="author row mt-0 mb-2">
<p class="mt-0 ml-3">BY <b>BENNY JOHNSON</b> </p>
<img src="images/opinion6.webp" class="mt-0 author-img" alt="author">
</div>
<span class="m-0 auto text-center text-light rounded-circle p-1 bg-dark"><b>VS</b></span>
<hr class="border-bottom debate-bar">
<div class="debaters row mt-3">
<img src="images/obama.webp" class="debate-img col-md-3 col-lg-5 col-xl-4 col-sm-4" alt="debate">
<p class="col-lg-7 col-md-9 col-xl-7 col-sm-8">Say Bye to Media Coverage If Pelosi Succeeds in Censoring Our
Video</p>
</div>
<hr class="border-bottom pb-1">
<div class="author row mt-0 mb-2">
<p class="mt-0 ml-3">BY <b>BENNY JOHNSON</b> </p>
<img src="images/opinion6.webp" class="mt-0 author-img" alt="author">
</div>
</div>
<div class="latest mt-3">
<h4 class="featured">LATEST NEWS</h4>
<div class="more-news-info col-12 col-md-12 col-sm-12">
<div class="news d-flex">
<img src="images/black.webp" class="black-pres" alt="corona">
<p class="float-right col-lg-12 col-sm-12"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong></p>
</div>
<hr class="my-4">
<div class="news d-flex">
<img src="images/black.webp" class="black-pres" alt="corona">
<p class="float-right col-lg-12 col-sm-12"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong></p>
</div>
<hr class="my-4">
<div class="news d-flex">
<img src="images/black.webp" class="black-pres" alt="corona">
<p class="float-right col-lg-12 col-sm-12"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong></p>
</div>
<hr class="my-4">
<div class="news d-flex">
<img src="images/black.webp" class="black-pres" alt="corona">
<p class="float-right col-lg-12 col-sm-12"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong></p>
</div>
<hr class="my-4">
<div class="news d-flex">
<img src="images/black.webp" class="black-pres" alt="corona">
<p class="float-right col-lg-12 col-sm-12"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong></p>
</div>
<hr class="my-4">
<div class="news d-flex">
<img src="images/black.webp" class="black-pres" alt="corona">
<p class="float-right col-lg-12 col-sm-12"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong></p>
</div>
<hr class="my-4">
<div class="news d-flex">
<img src="images/black.webp" class="black-pres" alt="corona">
<p class="float-right col-lg-12 col-sm-12"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong></p>
</div>
<hr class="my-4">
<div class="news new-news stories-1 d-flex">
<img src="images/black.webp" class="black-pres" alt="corona">
<p class="float-right col-lg-12 col-sm-12"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong></p>
</div>
<hr class="my-4 stories-1 new-news">
<div class="news new-news stories-1 d-flex">
<img src="images/black.webp" class="black-pres" alt="corona">
<p class="float-right col-lg-12 col-sm-12"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong></p>
</div>
<hr class="my-4 stories-1 new-news">
<div class="news new-news stories-1 d-flex">
<img src="images/black.webp" class="black-pres" alt="corona">
<p class="float-right col-lg-12 col-sm-12"><strong>Black Lives Matter Co-Founder Endorses Sanders and
Warren</strong></p>
</div>
</div>
</div>
<div class="signup bg-light border p-4 mt-5 col-md-4 col-sm-12 col-xl-12 col-lg-12">
<div>
<div class="d-flex bigN-para">
<span class="bigN-btn text-light btn-lg rounded-0">N</span>
<p class="pl-2"><strong>SIGN UP FOR OUR
NEWSLETTER</strong></p>
</div>
<br>
<button class="signup-btn btn-outline-light bg-secondary btn-lg">SIGN UP ></button>
<br>
<small><b>Update your preferences>></b></small>
</div>
</div>
</div>
</section>
<div class="text-center col-12 magazine">
<span class="bigN-btn text-light btn-lg rounded-0">N</span> <strong>IN THE MAGAZINE</strong>
</div>
<div class="middle col-lg-12 col-md-12 m-0 auto">
<hr>
<div class="middle-container col-12">
<div class="container-fluid row">
<div class="cover col-lg-3 col-sm-12 col-md-3">
<div>
<a href="#" class="bg-light text-danger february"> FEBRUARY 28 ISSUE</a>
<img src="images/february-cover.webp" class="position-relative feb-cover" alt="cover">
</div>
<p class="bg-light p-2 see">SEE ALL FEATURES</p>
</div>
<div class="articles articles-1 col-lg-3 col-sm-12 col-md-3">
<img src="images/armadillo.webp" class="" alt="world">
<p class="mt-3">
<span class="p-1 text-light"><b>COVER</b></span>
<span class="inner-span bg-white"><b>WORLD</b></span><br>
<b>Growth Can Be Green. Here's How</b>
</p>
</div>
<div class="articles articles-1 col-lg-3 col-sm-12 col-md-3">
<img src="images/annabella-sciorra.webp" class="" alt="world">
<p class="mt-3">
<span class="p-1 text-light"><b>COVER</b></span>
<span class="inner-span bg-white"><b>WORLD</b></span><br>
<b>Growth Can Be Green. Here's How</b>
</p>
</div>
<div class="articles articles-1 col-lg-3 col-sm-12 col-md-3">
<img src="images/bohemian.webp" class="" alt="world">
<p class="mt-3">
<span class="p-1 text-light"><b>COVER</b></span>
<span class="inner-span bg-white"><b>WORLD</b></span><br>
<b>Growth Can Be Green. Here's How</b>
</p>
</div>
<div class="articles articles-1 col-lg-3 col-sm-12 mt-4 col-md-3">
<img src="images/obama.webp" class="" alt="world">
<p class="mt-3">
<span class="p-1 text-light"><b>COVER</b></span>
<span class="inner-span bg-white"><b>WORLD</b></span><br>
<b>Growth Can Be Green. Here's How</b>
</p>
</div>
<div class="articles articles-1 col-lg-3 col-sm-12 mt-4 col-md-3">
<img src="images/trump.webp" class="" alt="world">
<p class="mt-3">
<span class="p-1 text-light"><b>COVER</b></span>
<span class="inner-span bg-white"><b>WORLD</b></span><br>
<b>Growth Can Be Green. Here's How</b>
</p>
</div>
<div class="articles articles-1 col-lg-3 col-sm-12 mt-4 col-md-3">
<img src="images/travel.webp" class="" alt="world">
<p class="mt-3">
<span class="p-1 text-light"><b>COVER</b></span>
<span class="inner-span bg-white"><b>WORLD</b></span><br>
<b>Growth Can Be Green. Here's How</b>
</p>
</div>
<div class="articles col-lg-3 col-sm-12 col-md-3">
<div>
<a href="#" class="bg-light text-danger february"> IN FOCUS</a>
<img src="images/february-cover.webp" class="position-relative in-focus" alt="cover">
</div>
<p class="font-weight-bold">Lorem Ipsum Dolor Lorem Ipsum Dolor</p>
</div>
</div>
</div>
</div>
</div>
<section class="editors-picks col-lg-12 mt-5">
<div class="editors">
<h3 class="display-4 text-center"><span class="mr-3 bigN-btn text-light btn-lg rounded-0">N</span>EDITOR'S PICKS
</h3>
<hr>
<div class="row">
<div class="articles-editors col-lg-3 col-md-6 col-sm-12 mb-3 card border-0">
<div>
<a href="#" class="bg-light text-danger p-2 news-wrap"> NEWS</a>
<img src="images/nasa.webp" class=" position-relative card-img-top" alt="newyork">
</div>
<div class="card-body">
<strong class="card-text">WikiLeaks Editor Calls Assange Extradition Arguments by U.S. 'Hollow
Words'</strong>
<p class="mt-2 card-text">
"The words that are coming out from the United States about WikiLeaks revelations were hollow 10
years
ago, and they don't increase in legitimacy as years go by," Kristinn Hrafnsson said.
</p>
</div>
</div>
<div class="articles-editors col-lg-3 col-md-6 col-sm-12 mb-3 card border-0">
<div>
<a href="#" class="bg-light text-danger p-2 news-wrap"> NEWS</a>
<img src="images/cakebook.webp" class=" position-relative card-img-top" alt="newyork">
</div>
<div class="card-body">
<strong class="card-text">WikiLeaks Editor Calls Assange Extradition Arguments by U.S. 'Hollow
Words'</strong>
<p class="mt-2 card-text">
"The words that are coming out from the United States about WikiLeaks revelations were hollow 10
years
ago, and they don't increase in legitimacy as years go by," Kristinn Hrafnsson said.
</p>
</div>
</div>
<div class="articles-editors col-lg-3 col-md-6 col-sm-12 mb-3 card border-0">
<div>
<a href="#" class="bg-light text-danger p-2 news-wrap"> NEWS</a>
<img src="images/bohemian.webp" class=" position-relative card-img-top" alt="newyork">
</div>
<div class="card-body">
<strong class="card-text">WikiLeaks Editor Calls Assange Extradition Arguments by U.S. 'Hollow
Words'</strong>
<p class="mt-2 card-text">
"The words that are coming out from the United States about WikiLeaks revelations were hollow 10
years
ago, and they don't increase in legitimacy as years go by," Kristinn Hrafnsson said.
</p>
</div>
</div>
<div class="articles-editors col-lg-3 col-md-6 col-sm-12 mb-3 card border-0">
<div>
<a href="#" class="bg-light text-danger p-2 news-wrap"> NEWS</a>
<img src="images/bloomberg.webp" class=" position-relative card-img-top" alt="newyork">
</div>
<div class="card-body">
<strong class="card-text">WikiLeaks Editor Calls Assange Extradition Arguments by U.S. 'Hollow
Words'</strong>
<p class="mt-2 card-text">
"The words that are coming out from the United States about WikiLeaks revelations were hollow 10
years
ago, and they don't increase in legitimacy as years go by," Kristinn Hrafnsson said.
</p>
</div>
</div>
<div class="articles-editors col-lg-3 col-md-6 col-sm-12 mb-3 card border-0">
<div>
<a href="#" class="bg-light text-danger p-2 news-wrap"> NEWS</a>
<img src="images/galapagos.webp" class=" position-relative card-img-top" alt="newyork">
</div>
<div class="card-body">
<strong class="card-text">WikiLeaks Editor Calls Assange Extradition Arguments by U.S. 'Hollow
Words'</strong>
<p class="mt-2 card-text">
"The words that are coming out from the United States about WikiLeaks revelations were hollow 10
years
ago, and they don't increase in legitimacy as years go by," Kristinn Hrafnsson said.
</p>
</div>
</div>
<div class="articles-editors col-lg-3 col-md-6 col-sm-12 mb-3 card border-0">
<div>
<a href="#" class="bg-light text-danger p-2 news-wrap"> NEWS</a>
<img src="images/download.webp" class=" position-relative card-img-top" alt="newyork">
</div>
<div class="card-body">
<strong class="card-text">WikiLeaks Editor Calls Assange Extradition Arguments by U.S. 'Hollow
Words'</strong>
<p class="mt-2 card-text">
"The words that are coming out from the United States about WikiLeaks revelations were hollow 10
years
ago, and they don't increase in legitimacy as years go by," Kristinn Hrafnsson said.
</p>
</div>
</div>
<div class="articles-editors col-lg-3 col-md-6 col-sm-12 mb-3 card border-0">
<div>
<a href="#" class="bg-light text-danger p-2 news-wrap"> NEWS</a>
<img src="images/armadillo.webp" class=" position-relative card-img-top" alt="newyork">
</div>
<div class="card-body">
<strong class="card-text">WikiLeaks Editor Calls Assange Extradition Arguments by U.S. 'Hollow
Words'</strong>
<p class="mt-2 card-text">
"The words that are coming out from the United States about WikiLeaks revelations were hollow 10
years
ago, and they don't increase in legitimacy as years go by," Kristinn Hrafnsson said.
</p>
</div>
</div>
<div class="articles-editors col-lg-3 col-md-6 col-sm-12 mb-3 card border-0">
<div>
<a href="#" class="bg-light text-danger p-2 news-wrap"> NEWS</a>
<img src="images/alaskan.webp" class=" position-relative card-img-top" alt="newyork">
</div>
<div class="card-body">
<strong class="card-text">WikiLeaks Editor Calls Assange Extradition Arguments by U.S. 'Hollow
Words'</strong>
<p class="mt-2 card-text">
"The words that are coming out from the United States about WikiLeaks revelations were hollow 10
years
ago, and they don't increase in legitimacy as years go by," Kristinn Hrafnsson said.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="col-12 mb-5 mt-5 bg-white">
<div class="slideshow">
<div class="slide-title">
<h3 class="display-4 text-center"><span class="mr-3 bigN-btn text-light btn-lg rounded-0">N</span>FEATURED
SLIDESHOWS</h3>
</div>
<hr>
<div class="slides row">
<div class="col-lg-4 col-md-4 mb-4">
<img src="images/travel.webp" alt="arma" class="position-relative slides-img">
<a href="#" class="wrap-1"><img src="images/11icon.png" alt="11" class="position-absolute feature-img"></a>
<p>The New Documentary Trying to Save the Most Trafficked Mammals in the World</p>
</div>
<div class="col-lg-4 col-md-4 mb-4">
<img src="images/alaskan.webp" alt="arma" class="position-relative slides-img">
<a href="#" class="wrap-1"><img src="images/11icon.png" alt="11" class="position-absolute feature-img"></a>
<p>The New Documentary Trying to Save the Most Trafficked Mammals in the World</p>
</div>
<div class="col-lg-4 col-md-4 mb-4">
<img src="images/armadillo.webp" alt="arma" class="position-relative slides-img">
<a href="#" class="wrap-1"><img src="images/11icon.png" alt="11" class="position-absolute feature-img"></a>
<p>The New Documentary Trying to Save the Most Trafficked Mammals in the World</p>
</div>
<div class="col-lg-4 col-md-4 mb-4">
<img src="images/bohemian.webp" alt="arma" class="position-relative slides-img">
<a href="#" class="wrap-1"><img src="images/11icon.png" alt="11" class="position-absolute feature-img"></a>
<p>The New Documentary Trying to Save the Most Trafficked Mammals in the World</p>
</div>
<div class="col-lg-4 col-md-4 mb-4">
<img src="images/galapagos.webp" alt="arma" class="position-relative slides-img">
<a href="#" class="wrap-1"><img src="images/11icon.png" alt="11" class="position-absolute feature-img"></a>
<p>The New Documentary Trying to Save the Most Trafficked Mammals in the World</p>
</div>
<div class="col-lg-4 col-md-4 mb-4">
<img src="images/volcanoes.webp" alt="arma" class="position-relative slides-img">
<a href="#" class="wrap-1"><img src="images/11icon.png" alt="11" class="position-absolute feature-img"></a>
<p>The New Documentary Trying to Save the Most Trafficked Mammals in the World</p>
</div>
</div>
</div>
<hr class="my-4">
</section>
<section class="extras bg-white">
<div class="extra-news col-12">
<div class="US">
<div>
<h4 class="mb-2">U.S.</h4><br>
</div>
<div class="row col-md-12">
<div class="col-lg-4 col-md-4">
<img src="images/hunter.webp" alt="bloomberg">
<p>#EatTheRich Trends After Mike Bloomberg Campaign Offices Vandalize</p>
</div>
<div class="col-lg-4 col-md-4">
<img src="images/impeach.webp" alt="bloomberg">
<p>#EatTheRich Trends After Mike Bloomberg Campaign Offices Vandalize</p>
</div>
<div class="sidebar col-lg-4 col-md-4">
<div class="sides ">
<div>
<img src="images/latestimg.webp" class=" col-lg-4" alt="side">
<strong class="col-lg-8 float-right">FBI Probes Border Patrol Union After $500,000 Goes Missing:
Report</strong>
</div>
<hr>
<div>
<img src="images/obama.webp" class="col-lg-4" alt="side">
<strong class="col-lg-8 float-right">FBI Probes Border Patrol Union After $500,000 Goes Missing:
Report</strong>
</div>
<hr>
<div>
<img src="images/border-patrol.webp" class=" col-lg-4" alt="side">
<strong class="col-lg-8 float-right">FBI Probes Border Patrol Union After $500,000 Goes Missing:
Report</strong>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="US">
<div>
<h4 class="mb-2">Sports</h4><br>
</div>
<div class="row col-md-12">
<div class="col-lg-4 col-md-4">
<img src="images/armadillo.webp" alt="bloomberg">
<p>#EatTheRich Trends After Mike Bloomberg Campaign Offices Vandalize</p>
</div>
<div class="col-lg-4 col-md-4">
<img src="images/trump.webp" alt="bloomberg">
<p>#EatTheRich Trends After Mike Bloomberg Campaign Offices Vandalize</p>
</div>
<div class="sidebar col-lg-4 col-md-4">
<div class="sides ">
<div>
<img src="images/periscope.webp" class=" col-lg-4" alt="side">
<strong class="col-lg-8 float-right">FBI Probes Border Patrol Union After $500,000 Goes Missing:
Report</strong>
</div>
<hr>
<div>
<img src="images/world.webp" class="col-lg-4" alt="side">
<strong class="col-lg-8 float-right">FBI Probes Border Patrol Union After $500,000 Goes Missing:
Report</strong>
</div>
<hr>
<div>
<img src="images/galapagos.webp" class=" col-lg-4" alt="side">
<strong class="col-lg-8 float-right">FBI Probes Border Patrol Union After $500,000 Goes Missing:
Report</strong>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="US">
<div>
<h4 class="mb-2">Politics</h4><br>
</div>
<div class="row col-md-12">
<div class="col-lg-4 col-md-4">
<img src="images/trump.webp" alt="bloomberg">
<p>#EatTheRich Trends After Mike Bloomberg Campaign Offices Vandalize</p>
</div>
<div class="col-lg-4 col-md-4">
<img src="images/impeach.webp" alt="bloomberg">
<p>#EatTheRich Trends After Mike Bloomberg Campaign Offices Vandalize</p>
</div>
<div class="sidebar col-lg-4 col-md-4">
<div class="sides ">
<div>
<img src="images/obama.webp" class=" col-lg-4" alt="side">
<strong class="col-lg-8 float-right">FBI Probes Border Patrol Union After $500,000 Goes Missing:
Report</strong>
</div>
<hr>
<div>
<img src="images/border-patrol.webp" class="col-lg-4" alt="side">
<strong class="col-lg-8 float-right">FBI Probes Border Patrol Union After $500,000 Goes Missing:
Report</strong>
</div>
<hr>
<div>
<img src="images/bloomberg.webp" class=" col-lg-4" alt="side">
<strong class="col-lg-8 float-right">FBI Probes Border Patrol Union After $500,000 Goes Missing:
Report</strong>
</div>
</div>
</div>
</div>
</div>