-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1361 lines (1255 loc) · 69.4 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.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/89c0957ca7.js" crossorigin="anonymous"></script>
<title>Newsweek</title>
</head>
<body class="bg-light">
<header class="font-weight-bolder">
<!--LOGO-->
<div class="container">
<div class="row bg-danger align-items-center justify-content-between">
<!--weather-->
<div class="col-3 text-white d-none d-lg-block ml-3">
<a class="text-white logonav-hover" href="#">
<img width="24" src="assets/images/weather-icon.png" alt="weather-icon">
<span>27° Eskisehir, TR ></span>
</a>
<span class="d-block font-weight-normal">Wed, Sep 16,2020</span>
</div>
<!--logo-->
<div class="col-lg-4 col-1 mx-lg-auto logo">
<img src="assets/images/logo-main.svg" alt="Newsweek logo">
</div>
<!--login-->
<div class="col-lg-3 col-1 d-flex mt-lg-5 my-3 justify-content-end align-items-center">
<a class="text-white logonav-hover d-none d-md-block d-lg-block pr-3" href="#">LOGIN</a>
<a class="text-white pr-2 d-none d-md-none d-block" href="#">
<i class="far fa-user-circle"></i>
</a>
<a href="#" class="badge badge-pill badge-warning">SUBSCRIBE ></a>
<a class="text-white d-lg-none d-md-block pl-3" href="#">
<i class="fas fa-bars fa-lg"></i>
</a>
</div>
</div>
</div>
<!--NAVBARS-->
<div class="d-none d-lg-block text-nowrap">
<!--Navbar-1-->
<nav class="navbar navbar-light bg-white navbar-expand-sm px-1">
<ul class="navbar-nav firstNav py-2 border-special">
<li class="nav-item"><a class="nav-link" href="#">U.S.</a></li>
<li class="nav-item"><a class="nav-link" href="#">World</a></li>
<li class="nav-item"><a class="nav-link" href="#">Business</a></li>
<li class="nav-item"><a class="nav-link" href="#">Tech & Science</a></li>
<li class="nav-item"><a class="nav-link" href="#">Culture</a></li>
<li class="nav-item"><a class="nav-link" href="#">Newsgeek</a></li>
<li class="nav-item"><a class="nav-link" href="#">Sports</a></li>
<li class="nav-item"><a class="nav-link" href="#">Health</a></li>
<li class="nav-item"><a class="nav-link" href="#">The Debate</a></li>
<li class="nav-item"><a class="nav-link" href="#">Vantage</a></li>
<li class="nav-item"><a class="nav-link" href="#">Weather</a></li>
<li class="nav-item"><a class="nav-link disabled " href="#">Search
<i class="fas fa-search"></i>
</a></li>
</ul>
</nav>
<!--Navbar-2-->
<nav class="navbar navbar-light bg-white navbar-expand-sm border-top border-bottom py-0">
<ul class="navbar-nav secondNav">
<li class="nav-item ml-3 mr-2"><a href="#" class="nav-link active">TRENDING</a></li>
<li class="nav-item mr-2"><a href="#" class="nav-link">DONALD TRUMP</a></li>
<li class="nav-item mr-2"><a href="#" class="nav-link">JOE BIDEN</a></li>
<li class="nav-item mr-2"><a href="#" class="nav-link">CHINA</a></li>
<li class="nav-item mr-2"><a href="#" class="nav-link">CORONAVIRUS</a></li>
<li class="nav-item mr-2"><a href="#" class="nav-link">2020 ELECTION</a></li>
</ul>
</nav>
</div>
</header>
<!--MAİN-->
<main class="bg-white pt-4">
<div class="row mx-2 lg-justify-content-between">
<!--Featured Stories-->
<section class="col-lg col-md-5">
<h6>FEATURED STORIES</h6>
<div class="card mb-2">
<figure class="position-relative">
<img class="w-100" src="assets/images/article1.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold font-weight-bold">
<a href="#">WORLD</a>
</figcaption>
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
As U.S.-China Cyber Cold War Rages, Intellectual Property Is A Costly Front
</a>
</h5>
<p class="card-text">
"The theft of intellectual property by the People's Republic of China costs America as much as
$500 billion a year," U.S. counterintelligence chief William Evanina told Newsweek.
</p>
</div>
<div class="card my-4">
<figure class="position-relative">
<img class="w-100" src="assets/images/article2.jpg" alt="article2">
<figcaption class="position-absolute fixed-bottom font-weight-bold ">
<a href="#">NEWS</a>
</figcaption>
</figure>
<h5 class="card-title">
<a href="#" class="hover-line-red font-weight-bolder">
Apple Helps FBI Nab Cop Car Firebomber After Refusing to Unlock San Bernardino Gunman's
iPhone
</a>
</h5>
<p class="card-text">
Apple CEO Tim Cook resisted the FBI's request in 2016 to unlock the iPhone of a suspect in the
San Bernardino shooting.
</p>
</div>
<div class="card my-4">
<figure class="position-relative">
<img class="w-100" src="assets/images/article3.jpg" alt="article3">
<figcaption class="position-absolute fixed-bottom font-weight-bold ">
<a href="#">U.S.</a>
</figcaption>
</figure>
<h5 class="card-title">
<a href="#" class="hover-line-red font-weight-bolder">
Georgia GOP Senator Calls for Judiciary Committee to Investigate 'Cuties'
</a>
</h5>
<p class="card-text">
Senator Kelly Loeffler wrote that the Netflix film "has raised new concerns about the
entertainment industry's complicity in sexualizing children, which also fuels predators."
</p>
</div>
<div class="card my-4">
<figure class="position-relative">
<img class="w-100" src="assets/images/article4.jpg" alt="article4">
<figcaption class="position-absolute fixed-bottom font-weight-bold">
<a href="#">POLITICS</a>
</figcaption>
</figure>
<h5 class="card-title">
<a href="#" class="hover-line-red font-weight-bolder">
Georgia GOP Senator Calls for Judiciary Committee to Investigate 'Cuties'
</a>
</h5>
<p class="card-text">
Senator Kelly Loeffler wrote that the Netflix film "has raised new concerns about the
entertainment industry's complicity in sexualizing children, which also fuels predators."
</p>
</div>
<div class="card my-4">
<figure class="position-relative">
<img class="w-100" src="assets/images/article5.jpg" alt="article5">
<figcaption class="position-absolute fixed-bottom font-weight-bold ">
<a href="#">U.S.</a>
</figcaption>
</figure>
<h5 class="card-title">
<a href="#" class="hover-line-red font-weight-bolder">
Georgia GOP Senator Calls for Judiciary Committee to Investigate 'Cuties'
</a>
</h5>
<p class="card-text">
Senator Kelly Loeffler wrote that the Netflix film "has raised new concerns about the
entertainment industry's complicity in sexualizing children, which also fuels predators."
</p>
</div>
<!--RANKINGS-->
<div class="card mb-4">
<figure class="position-relative mb-0">
<img class="w-100" src="assets/images/sponsored9.png" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold">
<a class="text-primary" href="#">RANKINGS</a>
</figcaption>
</figure>
<div class="border p-3 mt-0">
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
America's Best Physical Rehabilitation Centers 2020
</a>
</h5>
<p class="card-text">
75% of Roofstock users are first-time real estate investors, and more than half are under
35.
</p>
</div>
</div>
<div class="card mb-4">
<figure class="position-relative mb-0">
<img class="w-100" src="assets/images/sponsored10.png" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold">
<a class="text-primary" href="#">RANKINGS</a>
</figcaption>
</figure>
<div class="border p-3 mt-0">
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Best Maternity Hospitals 2020
</a>
</h5>
<p class="card-text">
75% of Roofstock users are first-time real estate investors, and more than half are under
35.
</p>
</div>
</div>
<div class="card mb-4">
<figure class="position-relative mb-0">
<img class="w-100" src="assets/images/sponsored8.png" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold">
<a class="text-primary" href="#">TAKE THE SURVEY</a>
</figcaption>
</figure>
<div class="border p-3 mt-0">
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
What Brands do You Trust the Most?
</a>
</h5>
<p class="card-text">
75% of Roofstock users are first-time real estate investors, and more than half are under
35.
</p>
</div>
</div>
<div class="card mb-4">
<figure class="position-relative mb-0">
<img class="w-100" src="assets/images/sponsored11.png" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold">
<a class="text-primary" href="#">RANKINGS</a>
</figcaption>
</figure>
<div class="border p-3 mt-0">
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Best Online Shops 2021
</a>
</h5>
<p class="card-text">
75% of Roofstock users are first-time real estate investors, and more than half are under
35.
</p>
</div>
</div>
</section>
<!--Top Story-->
<section class="col-lg-5 col-md-7">
<h6>TOP STORY</h6>
<div class="card mb-2">
<figure class="position-relative">
<img class="w-100" src="assets/images/middle1.jpg" alt="article6">
<figcaption class="position-absolute fixed-bottom font-weight-bold ">
<a href="#">U.S.</a>
</figcaption>
</figure>
<h5 class="card-title">
<a href="#" class="hover-line-red font-weight-bolder">
Pelosi Is Blocking Second Skinny Stimulus Plan, Now From Moderate Dems
</a>
</h5>
<p class="card-text">
"We did come down," the House Speaker said. "We can only go so far."
</p>
</div>
<!--My Turn-->
<h6 class="mt-4">MY TURN</h6>
<div class="row">
<div class="col-md-4 pr-0">
<figure>
<img class="w-100" src="assets/images/middle2.jpg" alt="article6">
<a href="#" class="hover-noline">
<h6 class="pt-3">"This Is What It's Like to Be Sapiosexual"</h6>
</a>
</figure>
</div>
<div class="col-md-4 pr-0">
<figure>
<img class="w-100" src="assets/images/middle4.jpg" alt="article6">
<a href="#" class="hover-noline">
<h6 class="pt-3">'I'm Working on a COVID-19 Vaccine'</h6>
</a>
</figure>
</div>
<div class="col-md-4 pr-0">
<figure>
<img class="w-100" src="assets/images/middle3.jpg" alt="article6">
<a href="#" class="hover-noline">
<h6 class="pt-3">'I'm a Marriage Therapist, Here Are 3 Ways Marriage Has Changed'</h6>
</a>
</figure>
</div>
</div>
<!--Culturel And Travel-->
<h6 class="mt-3">CULTUREL AND TRAVEL</h6>
<div class="row">
<div class="col-md-4 pr-0">
<figure class="position-relative">
<img class="w-100" src="assets/images/middle5.jpg" alt="article6">
<figcaption class="position-absolute font-weight-bold fixed-bottom">
<a class="culturel-pict" href="#">TRAVEL</a>
</figcaption>
</figure>
<a href="#" class="hover-noline">
<h6 class="pt-0">"This Is What It's Like to Be Sapiosexual"</h6>
</a>
</div>
<div class="col-md-4 pr-0">
<figure class="position-relative">
<img class="w-100" src="assets/images/middle6.jpg" alt="article6">
<figcaption class="position-absolute font-weight-bold fixed-bottom">
<a class="culturel-pict" href="#">INDIA</a>
</figcaption>
</figure>
<a href="#" class="hover-noline">
<h6 class="pt-0">'I'm Working on a COVID-19 Vaccine'</h6>
</a>
</div>
<div class="col-md-4 pr-0">
<figure class="position-relative">
<img class="w-100" src="assets/images/middle7.jpg" alt="article6">
<figcaption class="position-absolute font-weight-bold fixed-bottom">
<a class="culturel-pict" href="#">MUSEUMS</a>
</figcaption>
</figure>
<a href="#" class="hover-noline">
<h6 class="pt-0">'I'm a Marriage Therapist, Here Are 3 Ways Marriage Has Changed'</h6>
</a>
</div>
</div>
<!--More Stories-->
<h6 class="mt-3">MORE STORIES</h6>
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air Quality
in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air Quality
in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air Quality
in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air Quality
in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air Quality
in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air Quality
in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air Quality
in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<!--Sticky side-->
<div class="sticky-top">
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<div class="d-flex border-top border-bottom py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
<div class="d-flex border-top py-3">
<img src="assets/images/more-story1.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
<p class="card-text">An air quality advisory remains in place for all of Oregon through
Thursday.</p>
</div>
</div>
</div>
</section>
<!--The Debate-->
<section class="col-lg">
<h6>THE DEBATE</h6>
<div class="d-flex py-3 border-special1 border-bottom mb-1 pb-4 align-items-center pos">
<img class="debate-img" src="assets/images/profile1.png" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="text-dark">The Best (Cyber) Defense Is a Good (Cyber) Offense</h6>
</a>
<p class="card-text font-weight-bolder">
<span class="text-muted">BY</span> JAMIL N. JAFFER</p>
</div>
</div>
<div class="d-flex py-3 border-special2 border-top align-items-center pt-4">
<div class="position-absolute vs-layout">
<span class="bg-dark text-white rounded-circle p-2">VS</span>
</div>
<div class="pl-3 pt-3">
<a href="#" class="hover-line-red">
<h6 class="text-dark">The Best (Cyber) Defense Is a Good (Cyber) Offense</h6>
</a>
<p class="card-text font-weight-bolder">
<span class="text-muted">BY</span> JAMIL N. JAFFER</p>
</div>
<img class="debate-img ml-auto" src="assets/images/profile2.png" alt="more-story1">
</div>
<!--OPINION-->
<h6 class="mt-4 mb-0">OPINION</h6>
<div class="d-flex py-3 border-bottom align-items-center">
<img class="debate-img" src="assets/images/profile8.png" alt="more-story1">
<div class=" pl-3">
<a href="#" class="hover-line-red">
<h6 class="text-dark font-weight-bolder">The Best (Cyber) Defense Is a Good (Cyber) Offense
</h6>
</a>
<p class="card-text font-weight-bolder text-muted">BY JAMIL N. JAFFER</p>
</div>
</div>
<div class="d-flex py-3 border-bottom align-items-center">
<img class="debate-img" src="assets/images/profile6.png" alt="more-story1">
<div class=" pl-3">
<a href="#" class="hover-line-red">
<h6 class="text-dark font-weight-bolder">The Best (Cyber) Defense Is a Good (Cyber) Offense
</h6>
</a>
<p class="card-text font-weight-bolder text-muted">BY JAMIL N. JAFFER</p>
</div>
</div>
<div class="d-flex py-3 border-bottom align-items-center">
<img class="debate-img" src="assets/images/profile3.png" alt="more-story1">
<div class=" pl-3">
<a href="#" class="hover-line-red">
<h6 class="text-dark font-weight-bolder">The Best (Cyber) Defense Is a Good (Cyber) Offense
</h6>
</a>
<p class="card-text font-weight-bolder text-muted">BY JAMIL N. JAFFER</p>
</div>
</div>
<div class="d-flex py-3 border-bottom align-items-center">
<img class="debate-img" src="assets/images/profile4.png" alt="more-story1">
<div class=" pl-3">
<a href="#" class="hover-line-red">
<h6 class="text-dark font-weight-bolder">The Best (Cyber) Defense Is a Good (Cyber) Offense
</h6>
</a>
<p class="card-text font-weight-bolder text-muted">BY JAMIL N. JAFFER</p>
</div>
</div>
<div class="d-flex py-3 border-bottom align-items-center">
<img class="debate-img" src="assets/images/profile5.png" alt="more-story1">
<div class=" pl-3">
<a href="#" class="hover-line-red">
<h6 class="text-dark font-weight-bolder">The Best (Cyber) Defense Is a Good (Cyber) Offense
</h6>
</a>
<p class="card-text font-weight-bolder text-muted">BY JAMIL N. JAFFER</p>
</div>
</div>
<div class="d-flex py-3 border-bottom align-items-center">
<img class="debate-img" src="assets/images/profile6.png" alt="more-story1">
<div class=" pl-3">
<a href="#" class="hover-line-red">
<h6 class="text-dark font-weight-bolder">The Best (Cyber) Defense Is a Good (Cyber) Offense
</h6>
</a>
<p class="card-text font-weight-bolder text-muted">BY JAMIL N. JAFFER</p>
</div>
</div>
<div class="d-flex py-3 align-items-center">
<img class="debate-img" src="assets/images/profile7.png" alt="more-story1">
<div class=" pl-3">
<a href="#" class="hover-line-red">
<h6 class="text-dark font-weight-bolder">The Best (Cyber) Defense Is a Good (Cyber) Offense
</h6>
</a>
<p class="card-text font-weight-bolder text-muted">BY JAMIL N. JAFFER</p>
</div>
</div>
<!--SPONSORED-->
<div class="sponsored-width">
<div class="card my-4">
<figure class="position-relative figure mb-0">
<img class="w-100" src="assets/images/sponsored.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold">
<a class="text-primary" href="#">SPONSORED INSIGHT</a>
</figcaption>
</figure>
<div class="border p-3 mt-0">
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
This Startup Is Making Long Distance Real Estate Investing Possible for Millennials
</a>
</h5>
<p class="card-text">
75% of Roofstock users are first-time real estate investors, and more than half are
under 35.
</p>
</div>
</div>
<div class=" card border sponsored-width sponsored-width2 mb-4 bg-light">
<div class="d-flex mx-4 mt-4">
<span class="py-2 pr-2">
<img width=29 height="29" class="bg-danger" src="assets/images/logo.svg" alt="logo">
</span>
<p class="font-weight-bolder"> START YOUR DAY WITH OUR TOP 5 ARTICLES</p>
</div>
<input class="mx-4 mb-2" type="email" placeholder="Email address">
<button class="bg-danger rounded border-0 font-weight-bolder mx-4 text-white mb-4"
type="button"> FREE SIGN UP</button>
</div>
<div class="card mb-4">
<figure class="position-relative mb-0">
<img class="w-100" src="assets/images/sponsored2.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold">
<a class="text-primary" href="#">SPONSORED INSIGHT</a>
</figcaption>
</figure>
<div class="border p-3 mt-0">
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
This Startup Is Making Long Distance Real Estate Investing Possible for Millennials
</a>
</h5>
<p class="card-text">
75% of Roofstock users are first-time real estate investors, and more than half are
under 35.
</p>
</div>
</div>
<div class="card mb-4">
<figure class="position-relative mb-0">
<img class="w-100" src="assets/images/sponsored3.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold">
<a class="text-primary" href="#">SPONSORED INSIGHT</a>
</figcaption>
</figure>
<div class="border p-3 mt-0">
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
This Startup Is Making Long Distance Real Estate Investing Possible for Millennials
</a>
</h5>
<p class="card-text">
75% of Roofstock users are first-time real estate investors, and more than half are
under 35.
</p>
</div>
</div>
<div class="card mb-4">
<figure class="position-relative mb-0">
<img class="w-100" src="assets/images/sponsored4.png" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold">
<a class="text-primary" href="#">RANKINGS</a>
</figcaption>
</figure>
<div class="border p-3 mt-0">
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
America's Best Addiction Treatment Centers 2020</a>
</h5>
<p class="card-text">
75% of Roofstock users are first-time real estate investors, and more than half are
under 35.
</p>
</div>
</div>
<div class="card mb-4">
<figure class="position-relative mb-0">
<img class="w-100" src="assets/images/sponsored5.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold">
<a class="text-primary" href="#">RANKINGS</a>
</figcaption>
</figure>
<div class="border p-3 mt-0">
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Best Infection Prevention Products
</a>
</h5>
<p class="card-text">
75% of Roofstock users are first-time real estate investors, and more than half are
under 35.
</p>
</div>
</div>
<div class="card mt-4">
<figure class="position-relative mb-0">
<img class="w-100" src="assets/images/sponsored6.png" alt="article1">
</figure>
<div class="border p-3 mt-0">
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Best Nursing Homes 2021
</a>
</h5>
<p class="card-text">
Newsweek is partnering with the respected global data research firm Statista Inc. to
establish a ranking of Best Nursing Homes 2021. If you work in this field, please
participate in our survey. </p>
</div>
</div>
</div>
</section>
</div>
<!-- EDITORS PICK -->
<section class="container">
<div class="border-bottom py-3 text-center">
<img class="bg-danger" width="29" height="29" src="assets/images/logo.svg" alt="logo">
<span class="font-weight-bold">EDITOR'S PICK</span>
</div>
<div class="row py-3">
<article class="card col-lg mb-3 col-sm-12 col-md-6">
<figure class="position-relative figure">
<img class="w-100" src="assets/images/editor1.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold figure-caption">
<a href="#">CULTURE</a>
</figcaption>
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Will Barack Obama's Memoir Break Wife Michelle's Record?
</a>
</h5>
<p class="card-text">
The first volume of Barack Obama's memoir, "A Promised Land," is set for release this November.
</p>
</article>
<article class="card col-lg mb-3 col-sm-12 col-md-6">
<figure class="position-relative figure">
<img class="w-100" src="assets/images/editor2.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold figure-caption">
<a href="#">NEWS</a>
</figcaption>
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Will Barack Obama's Memoir Break Wife Michelle's Record?
</a>
</h5>
<p class="card-text">
The first volume of Barack Obama's memoir, "A Promised Land," is set for release this November.
</p>
</article>
<article class="card col-lg mb-3 col-sm-12 col-md-6">
<figure class="position-relative figure">
<img class="w-100" src="assets/images/editor3.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom font-weight-bold figure-caption">
<a href="#">TECH & SCIENCE</a>
</figcaption>
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Will Barack Obama's Memoir Break Wife Michelle's Record?
</a>
</h5>
<p class="card-text">
The first volume of Barack Obama's memoir, "A Promised Land," is set for release this November.
</p>
</article>
<article class="card col-lg mb-3 col-sm-12 col-md-6">
<figure class="position-relative figure">
<img class="w-100" src="assets/images/editor4.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom figure-caption font-weight-bold ">
<a href="#">CULTURE</a>
</figcaption>
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Will Barack Obama's Memoir Break Wife Michelle's Record?
</a>
</h5>
<p class="card-text">
The former couple were both taking part in a celebrity Zoom event Thursday night for a table
reading of "Fast Times at Ridgemont High" with Julia Roberts, Shia LaBeouf, Morgan Freeman,
Matthew McConaughey, and more here's where to watch the full thing. </p>
</article>
</div>
<div class="row pb-3">
<article class="card col-lg mb-3 col-sm-12 col-md-6">
<figure class="position-relative figure">
<img class="w-100" src="assets/images/editor5.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom figure-caption font-weight-bold">
<a href="#">WORLD</a>
</figcaption>
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Will Barack Obama's Memoir Break Wife Michelle's Record?
</a>
</h5>
<p class="card-text">
The first volume of Barack Obama's memoir, "A Promised Land," is set for release this November.
</p>
</article>
<article class="card col-lg mb-3 col-sm-12 col-md-6">
<figure class="position-relative figure">
<img class="w-100" src="assets/images/editor6.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom figure-caption font-weight-bold">
<a href="#">CULTURE</a>
</figcaption>
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Will Barack Obama's Memoir Break Wife Michelle's Record?
</a>
</h5>
<p class="card-text">
The first volume of Barack Obama's memoir, "A Promised Land," is set for release this November.
</p>
</article>
<article class="card col-lg mb-3 col-sm-12 col-md-6">
<figure class="position-relative figure">
<img class="w-100" src="assets/images/editor7.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom figure-caption font-weight-bold">
<a href="#">TECH & SCIENCE</a>
</figcaption>
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Will Barack Obama's Memoir Break Wife Michelle's Record?
</a>
</h5>
<p class="card-text">
The first volume of Barack Obama's memoir, "A Promised Land," is set for release this November.
</p>
</article>
<article class="card col-lg mb-3 col-sm-12 col-md-6">
<figure class="position-relative figure">
<img class="w-100" src="assets/images/editor8.jpg" alt="article1">
<figcaption class="position-absolute fixed-bottom figure-caption font-weight-bold">
<a href="#">NEWS</a>
</figcaption>
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
Will Barack Obama's Memoir Break Wife Michelle's Record?
</a>
</h5>
<p class="card-text">
The first volume of Barack Obama's memoir, "A Promised Land," is set for release this November.
</p>
</article>
</div>
</section>
<!-- U.S. -->
<section class="mt-4 container">
<h4 class="font-weight-bolder text-danger border-top pt-3">U.S.</h4>
<div class="row pb-3">
<div class="col-sm-12 col-md-4">
<figure>
<img class="w-100" src="assets/images/us1.jpg" alt="article1">
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
As U.S.-China Cyber Cold War Rages, Intellectual Property Is A Costly Front
</a>
</h5>
</div>
<div class="col-sm-12 col-md-4">
<figure>
<img class="w-100" src="assets/images/us2.jpg" alt="article1">
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
As U.S.-China Cyber Cold War Rages, Intellectual Property Is A Costly Front
</a>
</h5>
</div>
<div class="col-sm-12 col-md-4">
<div class="d-flex border-bottom pb-2">
<img class="a" src="assets/images/us5.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
</div>
</div>
<div class="d-flex border-bottom py-2">
<img src="assets/images/us4.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
</div>
</div>
<div class="d-flex py-2">
<img src="assets/images/us5.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- WORLD -->
<section class="mt-4 container">
<h4 class="font-weight-bolder text-danger border-top pt-3">World</h4>
<div class="row pb-3">
<div class="col-sm-12 col-md-4">
<figure>
<img class="w-100" src="assets/images/us1.jpg" alt="article1">
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
As U.S.-China Cyber Cold War Rages, Intellectual Property Is A Costly Front
</a>
</h5>
</div>
<div class="col-sm-12 col-md-4">
<figure>
<img class="w-100" src="assets/images/us2.jpg" alt="article1">
</figure>
<h5 class="card-title">
<a class="hover-line-red font-weight-bolder" href="#">
As U.S.-China Cyber Cold War Rages, Intellectual Property Is A Costly Front
</a>
</h5>
</div>
<div class="col-sm-12 col-md-4">
<div class="d-flex border-bottom pb-2">
<img class="a" src="assets/images/us5.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
</div>
</div>
<div class="d-flex border-bottom py-2">
<img src="assets/images/us4.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
</div>
</div>
<div class="d-flex py-2">
<img src="assets/images/us5.jpg" alt="more-story1">
<div class="pl-3">
<a href="#" class="hover-line-red">
<h6 class="font-weight-bold text-dark">Oregon Fires Mean Portland Now Has Worst Air
Quality in the World</h6>
</a>
</div>
</div>
</div>