-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1086 lines (1074 loc) · 42.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="style.css" />
<link
href="https://fonts.googleapis.com/css?family=Maven+Pro:400,600,800&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Raleway:300,400,700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"
integrity="sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V"
crossorigin="anonymous"
/>
<title>TNW- The Next Web</title>
</head>
<body>
<header class="header">
<div class="fixed__container">
<nav class="nav__tnw">
<div class="nav__tnw-left">
<ul>
<li><a href="" class="news">News</a></li>
<li><a href="" class="nav__tnw-link">TNW2020</a></li>
<li><a href="" class="nav__tnw-link">Business</a></li>
<li><a href="" class="nav__tnw-link">AMAs</a></li>
<li><a href="" class="nav__tnw-link">Spaces</a></li>
<li><a href="" class="nav__tnw-link">Terms & Conditions</a></li>
</ul>
</div>
<div class="nav__tnw-right">
<ul>
<li><a href="#" class="nav__tnw-link">About</a></li>
<li><a href="#" class="nav__tnw-link">Advertise</a></li>
<li><a href="#" class="nav__tnw-link">Jobs</a></li>
<li><a href="#" class="nav__tnw-link">Contact</a></li>
</ul>
</div>
</nav>
<nav class="nav__latest">
<div class="nav__latest-left">
<ul>
<li class="nav__logo-container">
<a href="#" class="nav__latest_logo">
<svg
xmlns="http://www.w3.org/2000/svg"
class="nav__logo"
viewBox="0 0 165 40"
>
<title>tnw-w</title>
<path
d="M72.48641,4.39346A15,15,0,0,0,61.87972,0H40V40H55V15h4.80865a5.00792,5.00792,0,0,1,3.539,1.46439l5.181,5.17761A5.00621,5.00621,0,0,1,70,25.17761V40H85V23.10654A15.00711,15.00711,0,0,0,80.5998,12.5Z"
fill="#fff"
/>
<path
d="M150,0V14.82239a5.0061,5.0061,0,0,1-1.47141,3.53546L143.344,23.53547A4.99924,4.99924,0,0,1,139.8085,25h-7.20535A14.979,14.979,0,0,0,135,16.89331V0H120V14.82239a5.0061,5.0061,0,0,1-1.47141,3.53546L113.344,23.53547A4.99924,4.99924,0,0,1,109.8085,25H105V0H90V40h21.87974a15.00761,15.00761,0,0,0,10.61005-4.39346L127.5,30.59845V40h14.37973a15.00761,15.00761,0,0,0,10.61005-4.39346l8.11-8.10669A15.00656,15.00656,0,0,0,165,16.89331V0Z"
fill="#fff"
/>
<polygon
points="0 15 10 15 10 40 25 40 25 15 35 15 35 0 0 0 0 15"
fill="#fff"
/>
</svg>
</a>
</li>
<li><a href="" class="nav__latest_link">Latest</a></li>
<li><a href="" class="nav__latest_link">Hard Work</a></li>
<li><a href="" class="nav__latest_link">Plugged</a></li>
<li><a href="" class="nav__latest_link">Fundamentals</a></li>
<li><a href="" class="nav__latest_link">Readme</a></li>
<li><a href="" class="nav__latest_link">Growth Quarters</a></li>
<li><a href="" class="nav__latest_link">Neurals</a></li>
</ul>
</div>
<div class="nav__latest-right">
<div><i class="fas fa-search"></i></div>
<div class="bar"><i class="fas fa-bars"></i></div>
</div>
</nav>
<nav class="tech">
<span>
Did you know we have a TECH FESTIVAL? Check it out
<i class="fas fa-arrow-right"></i>
</span>
</nav>
</div>
</header>
<main>
<!-- GRID SECTION IMAGES -->
<div class="grid">
<div class="grid__first">
<div class="grid__first-title">
<div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 165 40">
<title>tnw-w</title>
<path
d="M72.48641,4.39346A15,15,0,0,0,61.87972,0H40V40H55V15h4.80865a5.00792,5.00792,0,0,1,3.539,1.46439l5.181,5.17761A5.00621,5.00621,0,0,1,70,25.17761V40H85V23.10654A15.00711,15.00711,0,0,0,80.5998,12.5Z"
fill="#fff"
/>
<path
d="M150,0V14.82239a5.0061,5.0061,0,0,1-1.47141,3.53546L143.344,23.53547A4.99924,4.99924,0,0,1,139.8085,25h-7.20535A14.979,14.979,0,0,0,135,16.89331V0H120V14.82239a5.0061,5.0061,0,0,1-1.47141,3.53546L113.344,23.53547A4.99924,4.99924,0,0,1,109.8085,25H105V0H90V40h21.87974a15.00761,15.00761,0,0,0,10.61005-4.39346L127.5,30.59845V40h14.37973a15.00761,15.00761,0,0,0,10.61005-4.39346l8.11-8.10669A15.00656,15.00656,0,0,0,165,16.89331V0Z"
fill="#fff"
/>
<polygon
points="0 15 10 15 10 40 25 40 25 15 35 15 35 0 0 0 0 15"
fill="#fff"
/>
</svg>
</div>
<div>
<span class="grid__first-date">Wednesday - April 8,2020</span>
</div>
</div>
<div class="grid__first-text">
<h3>Insights</h3>
<span
>New US Press Secretary Kayleigh McEnany ran a racist, right-wing
conspiracy blog</span
>
<div class="share__details share__details-first">
<a href="#" class="author__title">by Bryan Clark</a>
<div class="share__time">
<i class="far fa-clock"></i>20 hours ago
</div>
<div class="share__button"><i class="fas fa-share-alt"></i></div>
</div>
</div>
</div>
<div class="grid__second">
<div class="grid__second-text">
<h3>Insights</h3>
<a href="#" class="second-text__header">
Psychedelic mushrooms could affect the brain long after their
active ingredient leaves the system</a
>
<div class="share__details">
<a href="#" class="author__title">by Bryan Clark</a>
<div class="share__time">
<i class="far fa-clock"></i>20 hours ago
</div>
<div class="share__button"><i class="fas fa-share-alt"></i></div>
</div>
</div>
</div>
<div class="grid__second grid__third">
<div class="grid__second-text">
<h3>Play</h3>
<a href="#" class="second-text__header">
Sony unveils the DualSense, the PlayStation 5’s stunning
controller</a
>
<div class="share__details">
<a href="#" class="author__title">by Rachel Caser</a>
<div class="share__time">
<i class="far fa-clock"></i>20 hours ago
</div>
<div class="share__button">
<i class="fas fa-share-alt"></i>21
</div>
</div>
</div>
</div>
</div>
<div class="main-container">
<div class="latest">
<div class="latest__header">
<a href="#" class="black"
>Latest News <i class="fas fa-chevron-right black"></i
></a>
</div>
<div class="latest__grid">
<article class="latest__grid-items">
<div class="latest__article-image common__image"></div>
<div class="latest__article-title">
<a href="#">
<h4> These AIs think they can translate your dog’s barks
</h4>
</a>
</div>
<div class="latest__article-details">
Thomas Maculay 43 minutes ago
</div>
</article>
<article class="latest__grid-items">
<div class="latest__article-image-one common__image"></div>
<div class="latest__article-title">
<a href="#">
<h4>Index Ventures launches $2B fund to back tech startups
worldwide
</h4>
</a>
</div>
<div class="latest__article-details">
Thomas Maculay 43 minutes ago
</div>
</article>
<article class="latest__grid-items">
<div class="latest__article-image-two common__image"></div>
<div class="latest__article-title">
<a href="#">
<h4>These coronavirus stock photos will make you want to stay at
home
</h4>
</a>
</div>
<div class="latest__article-details">
Thomas Maculay 43 minutes ago
</div>
</article>
<article class="latest__grid-items">
<div class="latest__article-image-three common__image"></div>
<div class="latest__article-title">
<a href="#">
<h4>Disney+ hits 50 million subscribers in just 5 months, giving
traders hope</h4>
</a>
</div>
<div class="latest__article-details">
Thomas Maculay 43 minutes ago
</div>
</article>
<article class="latest__grid-items">
<div class="latest__article-image-four common__image"></div>
<div class="latest__article-title">
<a href="#">
<h4> Turn your standard smartphone video into a professional-grade
machine and stream on Twitch.</h4>
</a>
</div>
<div class="latest__article-details">
Thomas Maculay 43 minutes ago
</div>
</article>
<article class="latest__grid-items">
<div class="latest__article-image-five common__image"></div>
<div class="latest__article-title">
<a href="#">
<h4>Who needs a copywriter? Email Skript writes all your marketing
emails for you.
</h4>
</a>
</div>
<div class="latest__article-details">
Thomas Maculay 43 minutes ago
</div>
</article>
<article class="latest__grid-items">
<div class="latest__article-image-six common__image"></div>
<div class="latest__article-title">
<a href="#">
<h4>Launching an ecommerce business could be your next big move.
</h4>
</a>
</div>
<div class="latest__article-details">
Thomas Maculay 43 minutes ago
</div>
</article>
<article class="latest__grid-items">
<div class="latest__article-image-seven common__image"></div>
<div class="latest__article-title">
<a href="#">
<h4>These AIs think they can translate your dog’s barks
</h4>
</a>
</div>
<div class="latest__article-details">
Thomas Maculay 43 minutes ago
</div>
</article>
</div>
</div>
<!-- Funding Section -->
<div class="funding">
<div class="funding__index-container">
<div class="latest__header">
<a href="#" class="black"
>Latest funding rounds on Index.co
<i class="fas fa-chevron-right black"></i>
</a>
</div>
<div class="funding__options">
<div class="options">
<a href="#">Add info</a>
</div>
<div class="options"><a href="#">Get updates by email</a></div>
<div class="options"><a href="#">See more</a></div>
</div>
</div>
<div class="funding__companies">
<div class="companies__container">
<div class="companies__container-header">
<div class="companies__container-image">
<img
src="https://img-cdn.tnwcdn.com/image?url=https%3A%2F%2Fpbs.twimg.com%2Fprofile_images%2F740190470190583808%2FNkOrw685.jpg&signature=525ce098cc1c33363d3899356e1c0b78"
alt="Companies"
/>
</div>
<div class="companies__container-name">
<a href="#">Neosurance</a>
</div>
<div class="companies__container-money">
<h4>€1.1M</h4>
<h5>Venture Capital</h5>
</div>
<div class="companies__container-tags">
<div class="tag"><i class="fas fa-tag"></i> Insurance</div>
<div class="tag">
<i class="fas fa-briefcase"></i> Net Insurance +2
</div>
</div>
<div class="companies__container-details">
Neosurance Closes $1.1M Funding rounds
<div class="details-name">
on FinSMEs
</div>
</div>
</div>
</div>
<div class="companies__container">
<div class="companies__container-header">
<div class="companies__container-image">
<img src="https://bit.ly/2Rn0y4I" alt="Logo" />
</div>
<div class="companies__container-name">
<a href="#">Vendi</a>
</div>
<div class="companies__container-money">
<h4>€600K</h4>
<h5>UnDisclosed</h5>
</div>
<div class="companies__container-tags">
<div class="tag"><i class="fas fa-tag"></i> E-Commerce</div>
<div class="tag">
<i class="fas fa-briefcase"></i> Sustainable Ventures
</div>
</div>
<div class="companies__container-details">
London Based startup Vendi raises €600K
<div class="details-name">
on UKTN (UK Tech News)
</div>
</div>
</div>
</div>
<div class="companies__container">
<div class="companies__container-header">
<div class="companies__container-image">
<img src="https://bit.ly/3eb4AGP" alt="Logo" />
</div>
<div class="companies__container-name">
<a href="#">Vedantu</a>
</div>
<div class="companies__container-money">
<h4>$12.5M</h4>
<h5>Series C</h5>
</div>
<div class="companies__container-tags">
<div class="tag"><i class="fas fa-tag"></i> Mobile, +3</div>
<div class="tag">
<i class="fas fa-briefcase"></i> Legend Capital
</div>
</div>
<div class="companies__container-details">
India deal monitor: Vedantu raises $12.5M from legend
Capital,Other and More updates
<span class="details-name">
on Dealstreet Asia
</span>
</div>
</div>
</div>
<div class="companies__container companies__hidden">
<div class="companies__container-header">
<div class="companies__container-image">
<img src="https://bit.ly/3c4kjpn" alt="Companies" />
</div>
<div class="companies__container-name">
<a href="#">Codemotion</a>
</div>
<div class="companies__container-money">
<h4>€6M</h4>
<h5>Venture Capital</h5>
</div>
<div class="companies__container-tags">
<div class="tag"><i class="fas fa-tag"></i> Development</div>
<div class="tag">
<i class="fas fa-briefcase"></i> P101, +2
</div>
</div>
<div class="companies__container-details">
Codemotion closes €6M second funding round
<div class="details-name">
on FinSMEs
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Articles Grid Section -->
<div class="articles__grid">
<div class="articles__container">
<h1>
<a href="#" class="black"> Apps </a
><i class="fas fa-chevron-right black"></i>
</h1>
<div class="articles__image">
<div class="articles__image-text">
<h4>Most Popular</h4>
<a href="#" class="articles__image-title"
>Hou to customize your new Slack Interface</a
><br />
<a href="#" class="articles__image-author">Mix</a> -
<span class="articles__image-date">1 day ago</span>
</div>
</div>
<div class="articles__latest">
<div class="articles__latest-text">
<h3>Latest</h3>
<a href="#"
>Netflix adds PINs to profiles so I can stop free loaders from
screwling up my recommendations</a
>
</div>
<div class="articles__latest-image"></div>
</div>
<ul class="article__list">
<li class="article__title">
<a href="#"
>Facebook launches tuned, scrapbook messaging app just for
couples(with Iphones)</a
>
</li>
<li class="article__title">
<a href="#"
>Daily Distraction: Here are some free E-books for your
lockdown, nerd</a
>
</li>
<li class="article__title">
<a href="#"
>Ride hailing Apps like Uber linked to increase crashes,study
finds</a
>
</li>
<li class="article__title">
<a href="#"
>How to use google maps new takeout and delivering
shortcuts</a
>
</li>
<li class="article__title">
<a href="#"
>Google launches corona virus news hub to keep reliable
coverage in one place</a
>
</li>
</ul>
</div>
<div class="articles__container">
<h1>
<a href="#" class="black">Gear</a>
<i class="fas fa-chevron-right black"></i>
</h1>
<div class="articles__image first">
<div class="articles__image-text">
<h4>Most Popular</h4>
<a href="#" class="articles__image-title"
>My favorite no-electricity espresso maker is now easier to
use than ever</a
><br />
<a href="#" class="articles__image-author">Napier Lopez</a> -
<span class="articles__image-date">20 hours ago</span>
</div>
</div>
<div class="articles__latest">
<div class="articles__latest-text">
<h3>Latest</h3>
<a href="#"
>The OnePlus 8 series will be the first with wireless
charging, and it's super fast</a
>
</div>
<div class="articles__latest-image"></div>
</div>
<ul class="article__list">
<li class="article__title">
<a href="#"
>Facebook launches tuned, scrapbook messaging app just for
couples(with Iphones)</a
>
</li>
<li class="article__title">
<a href="#"
>Daily Distraction: Here are some free E-books for your
lockdown, nerd</a
>
</li>
<li class="article__title">
<a href="#"
>Ride hailing Apps like Uber linked to increase crashes,study
finds</a
>
</li>
<li class="article__title">
<a href="#"
>How to use google maps new takeout and delivering
shortcuts</a
>
</li>
<li class="article__title">
<a href="#"
>Google launches corona virus news hub to keep reliable
coverage in one place</a
>
</li>
</ul>
</div>
<div class="articles__container">
<h1>
<a href="#" class="black"> Tech</a>
<i class="fas fa-chevron-right black"></i>
</h1>
<div class="articles__image second">
<div class="articles__image-text">
<h4>Most Popular</h4>
<a href="#" class="articles__image-title"
>How to make group video calls without logins or downloads</a
><br />
<a href="#" class="articles__image-author">Rachel Kaser</a> -
<span class="articles__image-date">16 hours ago</span>
</div>
</div>
<div class="articles__latest">
<div class="articles__latest-text">
<h3>Latest</h3>
<a href="#"
>Research: How location-tracking apps could stop the spread of
coronavirus</a
>
</div>
<div class="articles__latest-image"></div>
</div>
<ul class="article__list">
<li class="article__title">
<a href="#"
>MIT'S sprayable sensor can turn your sofa armrest into a TV
remote</a
>
</li>
<li class="article__title">
<a href="#"
>Parents are using Apple's FaceTime to bond with newborns as
hospitals tighten visitation rules</a
>
</li>
<li class="article__title">
<a href="#"
>Someone traines an AI on BDSM literature so it culd remix the
King James Bible</a
>
</li>
<li class="article__title">
<a href="#"
>Why the coronavirus lockdown makes you more vulneable to
phishing scams</a
>
</li>
<li class="article__title">
<a href="#"
>This smart toilet offers advanced poop analysis and
analprinting</a
>
</li>
</ul>
</div>
<div class="articles__container">
<h1>
<a href="#" class="black"> Creative</a>
<i class="fas fa-chevron-right black"></i>
</h1>
<div class="articles__image third">
<div class="articles__image-text">
<h4>Most Popular</h4>
<a href="#" class="articles__image-title"
>Animal Crossing: New Horizons player masterfully recreates
'Hyrule' from The Legend of Zelda</a
><br />
<a href="#" class="articles__image-author">Rachel Kaser</a> -
<span class="articles__image-date">2 days ago</span>
</div>
</div>
<div class="articles__latest">
<div class="articles__latest-text">
<h3>Latest</h3>
<a href="#"
>Life Imitiating art: Quarantined people remix famous
paintings with household items</a
>
</div>
<div class="articles__latest-image"></div>
</div>
<ul class="article__list">
<li class="article__title">
<a href="#"
>A Cats butthole cut 'trailer' is out - an analysis of its
alternative reality</a
>
</li>
<li class="article__title">
<a href="#"
>This tool areases web page text to reveal hidden poetry</a
>
</li>
<li class="article__title">
<a href="#"
>This Amazon parody dating site is hilarious... and also kind
of creepy</a
>
</li>
<li class="article__title">
<a href="#"
>Leaked trailer offers a new look at Godfall, the first game
announced for PS5</a
>
</li>
<li class="article__title">
<a href="#"
>Instagram's decision to hide photoshopped images is a
disservice to art</a
>
</li>
</ul>
</div>
<div class="articles__container">
<h1>
<a href="#" class="black"> Podium </a
><i class="fas fa-chevron-right black"></i>
</h1>
<div class="articles__image fourth">
<div class="articles__image-text">
<h4>Most Popular</h4>
<a href="#" class="articles__image-title"
>US doesn't need state privacy laws, it needs a federal one</a
><br />
<a href="#" class="articles__image-author">Vivek Lakshman</a> -
<span class="articles__image-date">13 minutes ago</span>
</div>
</div>
<div class="articles__latest">
<div class="articles__latest-text">
<h3>Latest</h3>
<a href="#"
>5 messaging tips to help brand marketers navigate the
pitfalls of coronavirus</a
>
</div>
<div class="articles__latest-image"></div>
</div>
<ul class="article__list">
<li class="article__title">
<a href="#"
>Facebook launches tuned, scrapbook messaging app just for
couples(with Iphones)</a
>
</li>
<li class="article__title">
<a href="#"
>Daily Distraction: Here are some free E-books for your
lockdown, nerd</a
>
</li>
<li class="article__title">
<a href="#"
>Ride hailing Apps like Uber linked to increase crashes,study
finds</a
>
</li>
<li class="article__title">
<a href="#"
>How to use google maps new takeout and delivering
shortcuts</a
>
</li>
<li class="article__title">
<a href="#"
>Google launches corona virus news hub to keep reliable
coverage in one place</a
>
</li>
</ul>
</div>
<div class="articles__container">
<h1>
<a href="#" class="black"> Insights </a>
<i class="fas fa-chevron-right black"></i>
</h1>
<div class="articles__image fifth">
<div class="articles__image-text">
<h4>Most Popular</h4>
<a href="#" class="articles__image-title"
>Amazon extends return windows so you don't have to go outside
during lockdown</a
><br />
<a href="#" class="articles__image-author">Napier Lopez</a> -
<span class="articles__image-date">17 hours ago</span>
</div>
</div>
<div class="articles__latest">
<div class="articles__latest-text">
<h3>Latest</h3>
<a href="#"
>Index Ventures launches $2B fund to back tech startups
worldwide</a
>
</div>
<div class="articles__latest-image"></div>
</div>
<ul class="article__list">
<li class="article__title">
<a href="#"
>Facebook launches tuned, scrapbook messaging app just for
couples(with Iphones)</a
>
</li>
<li class="article__title">
<a href="#"
>Daily Distraction: Here are some free E-books for your
lockdown, nerd</a
>
</li>
<li class="article__title">
<a href="#"
>Ride hailing Apps like Uber linked to increase crashes,study
finds</a
>
</li>
<li class="article__title">
<a href="#"
>How to use google maps new takeout and delivering
shortcuts</a
>
</li>
<li class="article__title">
<a href="#"
>Google launches corona virus news hub to keep reliable
coverage in one place</a
>
</li>
</ul>
</div>
<div class="articles__container">
<h1>
<a href="#" class="black"> Launch </a>
<i class="fas fa-chevron-right black"></i>
</h1>
<div class="articles__image sixth">
<div class="articles__image-text">
<h4>Most Popular</h4>
<a href="#" class="articles__image-title"
>Google's coronavirus information site is now live</a
><br />
<a href="#" class="articles__image-author">Mix</a> -
<span class="articles__image-date">1 day ago</span>
</div>
</div>
<div class="articles__latest">
<div class="articles__latest-text">
<h3>Latest</h3>
<a href="#"
>The hyper-compact Microlino 2.0 EV is almost too cute for
words</a
>
</div>
<div class="articles__latest-image"></div>
</div>
<ul class="article__list">
<li class="article__title">
<a href="#"
>Facebook launches tuned, scrapbook messaging app just for
couples(with Iphones)</a
>
</li>
<li class="article__title">
<a href="#"
>Daily Distraction: Here are some free E-books for your
lockdown, nerd</a
>
</li>
<li class="article__title">
<a href="#"
>Ride hailing Apps like Uber linked to increase crashes,study
finds</a
>
</li>
<li class="article__title">
<a href="#"
>How to use google maps new takeout and delivering
shortcuts</a
>
</li>
<li class="article__title">
<a href="#"
>Google launches corona virus news hub to keep reliable
coverage in one place</a
>
</li>
</ul>
</div>
<div class="articles__container">
<h1>
<a href="#" class="black"> Distract </a
><i class="fas fa-chevron-right black"></i>
</h1>
<div class="articles__image seventh">
<div class="articles__image-text">
<h4>Most Popular</h4>
<a href="#" class="articles__image-title"
>Watch 50+ live performances from Montreux Jazz Festival for
free</a
><br />
<a href="#" class="articles__image-author">Matthew Beedham</a> -
<span class="articles__image-date">2 hours ago</span>
</div>
</div>
<div class="articles__latest">
<div class="articles__latest-text">
<h3>Latest</h3>
<a href="#"
>Daily Distraction: Follow these Youtube chefs and cook up a
feast with pantry ingredients</a
>
</div>
<div class="articles__latest-image"></div>
</div>
<ul class="article__list">
<li class="article__title">
<a href="#"
>Facebook launches tuned, scrapbook messaging app just for
couples(with Iphones)</a
>
</li>
<li class="article__title">
<a href="#"
>Daily Distraction: Here are some free E-books for your
lockdown, nerd</a
>
</li>
<li class="article__title">
<a href="#"
>Ride hailing Apps like Uber linked to increase crashes,study
finds</a
>
</li>
<li class="article__title">
<a href="#"
>How to use google maps new takeout and delivering
shortcuts</a
>
</li>
<li class="article__title">
<a href="#"
>Google launches corona virus news hub to keep reliable
coverage in one place</a
>
</li>
</ul>
</div>
</div>
<div class="latest">
<div class="latest__header latest__deals">
<a href="#" class="black"
>Latest Deals<i class="fas fa-chevron-right black"></i
></a>
<a href="#" class="deals black">See all deals</a>
</div>
<div class="latest__grid">
<article class="latest__grid-items">
<a href="#" class="latest__deal-image common__image">
<div class="offer__tag"><div class="number">90% off</div></div>
</a>
<div class="latest__article-title">
<a href="#"> <h4>
AWS Cloud Essentials Course
</h4>
</a>
</div>
<div class="latest__deals-details">
<span class="discount"><span>$200</span></span>
<span>$19.99</span>
</div>
</article>
<article class="latest__grid-items">
<div class="latest__deal-image common__image one">
<div class="offer__tag"><div class="number">90% off</div></div>
</div>
<div class="latest__article-title">
<a href="#">
<h4>
Learn How to Draw Freebie Bundle
</h4>
</a>
</div>
<div class="latest__deals-details">
<span class="discount"><span>0</span></span>
<span>$0</span>
</div>
</article>
<article class="latest__grid-items">
<a href="#" class="latest__deal-image common__image two">
<div class="offer__tag"><div class="number">90% off</div></div>
</a>
<div class="latest__article-title">
<a href="#"> <h4>
The Adobe Lightroom & Photoshop for Beginner-Designers Bundle
</h4>
</a>
</div>
<div class="latest__deals-details">
<span class="discount"><span>$1791</span></span>
<span>$39.99</span>
</div>
</article>
<article class="latest__grid-items">
<div class="latest__deal-image common__image three">
<div class="offer__tag"><div class="number">90% off</div></div>
</div>
<div class="latest__article-title">
<a href="#">
<h4>
Babbel Language Learning: Lifetime Subscription (All
Languages)
</h4>
</a>
</div>
<div class="latest__deals-details">
<span class="discount"><span>$399</span></span>
<span>$159</span>
</div>
</article>
<article class="latest__grid-items">
<div class="latest__deal-image common__image four">
<div class="offer__tag"><div class="number">90% off</div></div>
</div>
<div class="latest__article-title">
<a href="#">
<h4>
StackSkills Unlimited: Lifetime Access
</h4>
</a>
</div>
<div class="latest__deals-details">
<span class="discount"><span>$1495</span></span>
<span>$59</span>
</div>
</article>
<article class="latest__grid-items">
<div class="latest__deal-image common__image five">
<div class="offer__tag"><div class="number">67% off</div></div>
</div>
<div class="latest__article-title">
<a href="#">
<h4>
Canva Pro: 3-Month Subscription
</h4>
</a>
</div>
<div class="latest__deals-details">
<span class="discount"><span>$38.85</span></span>
<span>$12.99</span>
</div>
</article>
<article class="latest__grid-items">
<div class="latest__deal-image common__image six">
<div class="offer__tag"><div class="number">95% off</div></div>
</div>
<div class="latest__article-title">
<a href="#">
<h4>
The Complete Introduction to Software Engineering Bundle
</h4>
</a>