-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1083 lines (952 loc) · 46.9 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" dir="">
<head>
<!-- Required Meta Tags Always Come First -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Title -->
<title>Startup Space</title>
<!-- Favicon -->
<link rel="shortcut icon" href="./assets/branding/favicon.ico">
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<!-- CSS Implementing Plugins -->
<link rel="stylesheet" href="assets/css/vendor.min.css">
<link rel="stylesheet" href="assets/vendor/bootstrap-icons/font/bootstrap-icons.css">
<link rel="stylesheet" href="assets/vendor/aos/dist/aos.css">
<!-- CSS Front Template -->
<link rel="stylesheet" href="assets/css/theme.minc619.css?v=1.0">
</head>
<body>
<!-- ========== HEADER ========== -->
<header id="header" class="navbar navbar-expand-lg navbar-end navbar-absolute-top navbar-light navbar-show-hide" data-hs-header-options='{
"fixMoment": 1000,
"fixEffect": "slide"
}'>
<div class="container">
<nav class="js-mega-menu navbar-nav-wrap">
<!-- Default Logo -->
<a class="navbar-brand" href="index.html" aria-label="Front">
<img class="navbar-brand-logo" src="assets/branding/startupspace-clear.png" alt="Logo">
</a>
<!-- End Default Logo -->
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-default">
<i class="bi-list"></i>
</span>
<span class="navbar-toggler-toggled">
<i class="bi-x"></i>
</span>
</button>
<!-- End Toggler -->
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<div class="navbar-absolute-top-scroller">
<ul class="navbar-nav">
<!-- Landings -->
<li class="hs-has-mega-menu nav-item">
<a id="landingsMegaMenu" class="hs-mega-menu-invoker nav-link dropdown-toggle active" aria-current="page" href="#" role="button" aria-expanded="false">Landings</a>
<!-- Mega Menu -->
<div class="hs-mega-menu dropdown-menu w-100" aria-labelledby="landingsMegaMenu" style="min-width: 30rem;">
<div class="row">
<div class="col-lg-6 d-none d-lg-block">
<!-- Banner Image -->
<div class="navbar-dropdown-menu-banner" style="background-image: url(assets/svg/components/shape-3.svg);">
<div class="navbar-dropdown-menu-banner-content">
<div class="mb-4">
<span class="h2 d-block">Branding Works</span>
<p>Experience a level of our quality in both design & customization works.</p>
</div>
<a class="btn btn-primary btn-transition" href="#">Learn more <i class="bi-chevron-right small"></i></a>
</div>
</div>
<!-- End Banner Image -->
</div>
<!-- End Col -->
<div class="col-lg-6">
<div class="navbar-dropdown-menu-inner">
<div class="row">
<div class="col-sm mb-3 mb-sm-0">
<span class="dropdown-header">Classic</span>
<a class="dropdown-item active" href="landing-classic-corporate.html">Corporate</a>
<a class="dropdown-item " href="landing-classic-analytics.html">Analytics <span class="badge bg-primary rounded-pill ms-1">Hot</span></a>
<a class="dropdown-item " href="landing-classic-studio.html">Studio</a>
<a class="dropdown-item " href="landing-classic-marketing.html">Marketing</a>
<a class="dropdown-item " href="landing-classic-advertisement.html">Advertisement</a>
<a class="dropdown-item " href="landing-classic-consulting.html">Consulting</a>
<a class="dropdown-item " href="landing-classic-portfolio.html">Portfolio</a>
<a class="dropdown-item " href="landing-classic-software.html">Software</a>
<a class="dropdown-item " href="landing-classic-business.html">Business</a>
</div>
<!-- End Col -->
<div class="col-sm">
<div class="mb-3">
<span class="dropdown-header">App</span>
<a class="dropdown-item " href="landing-app-ui-kit.html">UI Kit</a>
<a class="dropdown-item " href="landing-app-saas.html">SaaS</a>
<a class="dropdown-item " href="landing-app-workflow.html">Workflow</a>
<a class="dropdown-item " href="landing-app-payment.html">Payment</a>
<a class="dropdown-item " href="landing-app-tool.html">Tool</a>
</div>
<span class="dropdown-header">Onepage</span>
<a class="dropdown-item " href="landing-onepage-corporate.html">Corporate</a>
<a class="dropdown-item " href="landing-onepage-saas.html">SaaS <span class="badge bg-primary rounded-pill ms-1">Hot</span></a>
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
<!-- End Mega Menu -->
</li>
<!-- End Landings -->
<!-- Company -->
<li class="hs-has-sub-menu nav-item">
<a id="companyMegaMenu" class="hs-mega-menu-invoker nav-link dropdown-toggle " href="#" role="button" aria-expanded="false">Company</a>
<!-- Mega Menu -->
<div class="hs-sub-menu dropdown-menu" aria-labelledby="companyMegaMenu" style="min-width: 14rem;">
<a class="dropdown-item " href="page-about.html">About</a>
<a class="dropdown-item " href="page-services.html">Services</a>
<a class="dropdown-item " href="page-customer-stories.html">Customer Stories</a>
<a class="dropdown-item " href="page-customer-story.html">Customer Story</a>
<a class="dropdown-item " href="page-careers.html">Careers</a>
<a class="dropdown-item " href="page-careers-overview.html">Careers Overview</a>
<a class="dropdown-item " href="page-hire-us.html">Hire Us</a>
<a class="dropdown-item " href="page-pricing.html">Pricing</a>
<a class="dropdown-item " href="page-contacts-agency.html">Contacts: Agency</a>
<a class="dropdown-item " href="page-contacts-startup.html">Contacts: Startup</a>
</div>
<!-- End Mega Menu -->
</li>
<!-- End Company -->
<!-- Account -->
<li class="hs-has-sub-menu nav-item">
<a id="accountMegaMenu" class="hs-mega-menu-invoker nav-link dropdown-toggle " href="#" role="button" aria-expanded="false">Account</a>
<!-- Mega Menu -->
<div class="hs-sub-menu dropdown-menu" aria-labelledby="accountMegaMenu" style="min-width: 14rem;">
<!-- Authentication -->
<div class="hs-has-sub-menu nav-item">
<a id="authenticationMegaMenu" class="hs-mega-menu-invoker dropdown-item dropdown-toggle " href="#" role="button" aria-expanded="false">Authentication</a>
<div class="hs-sub-menu dropdown-menu" aria-labelledby="authenticationMegaMenu" style="min-width: 14rem;">
<a class="dropdown-item" href="#" data-bs-toggle="modal" data-bs-target="#signupModal">Signup Modal</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item " href="page-login.html">Login</a>
<a class="dropdown-item " href="page-signup.html">Signup</a>
<a class="dropdown-item " href="page-reset-password.html">Reset Password</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item " href="page-login-simple.html">Login Simple</a>
<a class="dropdown-item " href="page-signup-simple.html">Signup Simple</a>
<a class="dropdown-item " href="page-reset-password-simple.html">Reset Password Simple</a>
</div>
</div>
<!-- End Authentication -->
<a class="dropdown-item " href="account-overview.html">Personal Info</a>
<a class="dropdown-item " href="account-security.html">Security</a>
<a class="dropdown-item " href="account-notifications.html">Notifications</a>
<a class="dropdown-item " href="account-preferences.html">Preferences</a>
<a class="dropdown-item " href="account-orders.html">Orders</a>
<a class="dropdown-item " href="account-wishlist.html">Wishlist</a>
<a class="dropdown-item " href="account-payments.html">Payments</a>
<a class="dropdown-item " href="account-address.html">Address</a>
<a class="dropdown-item " href="account-teams.html">Teams</a>
</div>
<!-- End Mega Menu -->
</li>
<!-- End Account -->
<!-- Pages -->
<li class="hs-has-sub-menu nav-item">
<a id="pagesMegaMenu" class="hs-mega-menu-invoker nav-link dropdown-toggle " href="#" role="button" aria-expanded="false">Pages</a>
<!-- Mega Menu -->
<div class="hs-sub-menu dropdown-menu" aria-labelledby="pagesMegaMenu" style="min-width: 14rem;">
<a class="dropdown-item " href="page-faq.html">FAQ</a>
<a class="dropdown-item " href="page-terms.html">Terms & Conditions</a>
<a class="dropdown-item " href="page-privacy.html">Privacy & Policy</a>
<a class="dropdown-item " href="page-coming-soon.html">Coming Soon</a>
<a class="dropdown-item " href="page-coming-soon-simple.html">Coming Soon: Simple</a>
<a class="dropdown-item " href="page-maintenance-mode.html">Maintenance Mode</a>
<a class="dropdown-item " href="page-status.html">Status</a>
<a class="dropdown-item " href="page-invoice.html">Invoice</a>
<a class="dropdown-item " href="page-error-404.html">Error 404</a>
</div>
<!-- End Mega Menu -->
</li>
<!-- End Pages -->
<!-- Blog -->
<li class="hs-has-sub-menu nav-item">
<a id="blogMegaMenu" class="hs-mega-menu-invoker nav-link dropdown-toggle " href="#" role="button" aria-expanded="false">Blog</a>
<!-- Mega Menu -->
<div class="hs-sub-menu dropdown-menu" aria-labelledby="blogMegaMenu" style="min-width: 14rem;">
<a class="dropdown-item " href="blog-journal.html">Journal</a>
<a class="dropdown-item " href="blog-metro.html">Metro</a>
<a class="dropdown-item " href="blog-newsroom.html">Newsroom</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item " href="blog-article.html">Article</a>
<a class="dropdown-item " href="blog-author-profile.html">Author Profile</a>
</div>
<!-- End Mega Menu -->
</li>
<!-- End Blog -->
<!-- Portfolio -->
<li class="hs-has-sub-menu nav-item">
<a id="portfolioMegaMenu" class="hs-mega-menu-invoker nav-link dropdown-toggle " href="#" role="button" aria-expanded="false">Portfolio</a>
<!-- Mega Menu -->
<div class="hs-sub-menu dropdown-menu" aria-labelledby="portfolioMegaMenu" style="min-width: 14rem;">
<a class="dropdown-item " href="portfolio-grid.html">Grid</a>
<a class="dropdown-item " href="portfolio-product-article.html">Product Article</a>
<a class="dropdown-item " href="portfolio-case-studies-branding.html">Case Studies: Branding</a>
<a class="dropdown-item " href="portfolio-case-studies-product.html">Case Studies: Product</a>
</div>
<!-- End Mega Menu -->
</li>
<!-- End Portfolio -->
</ul>
</div>
</div>
<!-- End Collapse -->
</nav>
</div>
</header>
<!-- ========== END HEADER ========== -->
<!-- ========== MAIN CONTENT ========== -->
<main id="content" role="main">
<!-- Hero -->
<div class="d-lg-flex position-relative">
<div class="container d-lg-flex align-items-lg-center content-space-t-3 content-space-lg-0 min-vh-lg-100">
<!-- Heading -->
<div class="w-100">
<div class="row">
<div class="col-lg-5">
<div class="mb-5">
<h1 class="display-4 mb-3">
Turn your ideas into a
<span class="text-primary text-highlight-warning">
<span class="js-typedjs" data-hs-typed-options='{
"strings": ["startup.", "future.", "success."],
"typeSpeed": 90,
"loop": true,
"backSpeed": 30,
"backDelay": 2500
}'></span>
</span>
</h1>
<p class="lead">Here we have decentralized the whole startup process for all entrepreneur's and VC's</p>
</div>
<div class="d-grid d-sm-flex gap-3">
<a class="btn btn-primary btn-transition px-6" href="./signup.html">Get started</a>
<a class="btn btn-link" href="#">Learn more<i class="bi-chevron-right small ms-1"></i></a>
</div>
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
<!-- End Title & Description -->
<!-- SVG Shape -->
<div class="col-lg-7 col-xl-6 d-none d-lg-block position-absolute top-0 end-0 pe-0" style="margin-top: 6.75rem;">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 1137.5 979.2">
<path fill="#F9FBFF" d="M565.5,957.4c81.1-7.4,155.5-49.3,202.4-115.7C840,739.8,857,570,510.7,348.3C-35.5-1.5-4.2,340.3,2.7,389
c0.7,4.7,1.2,9.5,1.7,14.2l29.3,321c14,154.2,150.6,267.8,304.9,253.8L565.5,957.4z" />
<defs>
<path id="mainHeroSVG1" d="M1137.5,0H450.4l-278,279.7C22.4,430.6,24.3,675,176.8,823.5l0,0C316.9,960,537.7,968.7,688.2,843.6l449.3-373.4V0z" />
</defs>
<clipPath id="mainHeroSVG2">
<use xlink:href="#mainHeroSVG1" />
</clipPath>
<g transform="matrix(1 0 0 1 0 0)" clip-path="url(#mainHeroSVG2)">
<image width="750" height="750" xlink:href="assets/branding/hero.jpg" transform="matrix(1.4462 0 0 1.4448 52.8755 0)"></image>
</g>
</svg>
</div>
<!-- End SVG Shape -->
</div>
</div>
<!-- End Hero -->
<!-- Features -->
<div class="position-relative bg-light rounded-2 mx-3 mx-lg-10">
<div class="container content-space-2 content-space-lg-3">
<!-- Heading -->
<div class="w-md-75 w-lg-50 text-center mx-md-auto mb-5">
<h2>Decentralizing the startup space, transform your ideas with web3 tech</h2>
<p>Taking your ideas from concepts to a full time profitable startup</p>
</div>
<!-- End Heading -->
<div class="text-center mb-10">
<!-- List Checked -->
<ul class="list-inline list-checked list-checked-primary">
<li class="list-inline-item list-checked-item">ideate the system</li>
<li class="list-inline-item list-checked-item">Nurture and Innovate</li>
<li class="list-inline-item list-checked-item">Validate and grow</li>
</ul>
<!-- End List Checked -->
</div>
<div class="row">
<div class="col-lg-7 mb-9 mb-lg-0">
<div class="pe-lg-6">
<!-- Browser Device -->
<figure class="device-browser">
<div class="device-browser-header">
<div class="device-browser-header-btn-list">
<span class="device-browser-header-btn-list-btn"></span>
<span class="device-browser-header-btn-list-btn"></span>
<span class="device-browser-header-btn-list-btn"></span>
</div>
<div class="device-browser-header-browser-bar">www.htmlstream.com/front/</div>
</div>
<div class="device-browser-frame">
<img class="device-browser-img" src="assets/branding/hero2.jpg" alt="Image Description">
</div>
</figure>
<!-- End Browser Device -->
</div>
</div>
<!-- End Col -->
<div class="col-lg-5">
<!-- Heading -->
<div class="mb-4">
<h2>A collaborative system designed to help you navigate your startup Journey</h2>
<p>We help entrepreneurs bring ideas to life in the digital world, from the idea phrase, to their funding phrase</p>
</div>
<!-- End Heading -->
<!-- List Checked -->
<ul class="list-checked list-checked-primary mb-5">
<li class="list-checked-item">T</li>
<li class="list-checked-item">Hundreds of thousands saved</li>
<li class="list-checked-item">Scale budgets efficiently</li>
</ul>
<!-- End List Checked -->
<a class="btn btn-primary" href="#">Get started</a>
<hr class="my-5">
<span class="d-block">Trusted by leading companies</span>
<div class="row">
<div class="col py-3">
<img class="avatar avatar-4x3" src="assets/svg/brands/fitbit-dark.svg" alt="Logo">
</div>
<!-- End Col -->
<div class="col py-3">
<img class="avatar avatar-4x3" src="assets/svg/brands/forbes-dark.svg" alt="Logo">
</div>
<!-- End Col -->
<div class="col py-3">
<img class="avatar avatar-4x3" src="assets/svg/brands/mailchimp-dark.svg" alt="Logo">
</div>
<!-- End Col -->
<div class="col py-3">
<img class="avatar avatar-4x3" src="assets/svg/brands/layar-dark.svg" alt="Logo">
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
</div>
<!-- End Features -->
<!-- Testimonials -->
<div class="container content-space-2 content-space-lg-3">
<div class="row align-items-md-center">
<div class="col-md-5 d-none d-md-block">
<img class="img-fluid rounded-2" src="assets/branding/christwin.png" alt="Image Description">
</div>
<!-- End Col -->
<div class="col-md-7">
<!-- Blockquote -->
<figure class="pe-md-7">
<div class="mb-4">
<img class="avatar avatar-xl avatar-4x3" src="assets/branding/startupspace-clear.png" alt="Image Description">
</div>
<blockquote class="blockquote blockquote-lg">" I'm absolutely floored by the level of care and attention to detail the team at Htmlstream have put into this theme and for one can guarantee that I will be a return customer. "</blockquote>
<figcaption class="blockquote-footer">
<div class="d-flex align-items-center">
<div class="flex-shrink-0 d-md-none">
<img class="avatar avatar-circle" src="assets/branding/christwin.png" alt="Image Description">
</div>
<div class="flex-grow-1 ms-3 ms-md-0">
Christwin
<span class="blockquote-footer-source">Team Lead at Startup Space</span>
</div>
</div>
</figcaption>
</figure>
<!-- End Blockquote -->
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
<!-- End Testimonials -->
<!-- Stats -->
<div class="bg-light rounded-2 mx-3 mx-lg-10">
<div class="container content-space-2">
<div class="row justify-content-center">
<div class="col-sm-6 col-md-4 mb-7 mb-md-0">
<!-- Stats -->
<div class="text-center">
<h2 class="display-4"><i class="bi-arrow-down-short text-danger"></i>47%</h2>
<p class="mb-0">fewer meetings across<br>organizations</p>
</div>
<!-- End Stats -->
</div>
<!-- End Col -->
<div class="col-sm-6 col-md-4 mb-7 mb-md-0">
<!-- Stats -->
<div class="text-center">
<h2 class="display-4"><i class="bi-arrow-up-short text-success"></i>23%</h2>
<p class="mb-0">increase in traffic on<br>webpages with Looms</p>
</div>
<!-- End Stats -->
</div>
<!-- End Col -->
<div class="col-sm-6 col-md-4">
<!-- Stats -->
<div class="text-center">
<h2 class="display-4"><i class="bi-arrow-up-short text-success"></i>9.3%</h2>
<p class="mb-0">boost in reply rates across<br>sales outreach</p>
</div>
<!-- End Stats -->
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
</div>
<!-- End Stats -->
<!-- Card Grid -->
<div class="container content-space-2 content-space-lg-3">
<!-- Heading -->
<div class="w-md-75 w-lg-50 text-center mx-md-auto mb-5">
<h2>Discover more</h2>
</div>
<!-- End Heading -->
<div class="overflow-hidden">
<div class="row gx-lg-7">
<div class="col-sm-6 col-lg-4 mb-5">
<!-- Card -->
<a class="card card-flush h-100" href="#" data-aos="fade-up">
<img class="card-img" src="assets/img/480x320/img33.jpg" alt="Image Description">
<div class="card-body">
<span class="card-subtitle text-body">Read the blog</span>
<h4 class="card-title text-inherit">Have a meaningful impact</h4>
<p class="card-text text-body">Opportunities to Front who have proven to be good at executing on them.</p>
</div>
</a>
<!-- End Card -->
</div>
<!-- End Col -->
<div class="col-sm-6 col-lg-4 mb-5">
<!-- Card -->
<a class="card card-flush h-100" href="#" data-aos="fade-up" data-aos-delay="150">
<img class="card-img" src="assets/img/480x320/img34.jpg" alt="Image Description">
<div class="card-body">
<span class="card-subtitle text-body">Read the blog</span>
<h4 class="card-title text-inherit">Documentation</h4>
<p class="card-text text-body">Whether you're a startup or a global enterprise, learn how to integrate with Front.</p>
</div>
</a>
<!-- End Card -->
</div>
<!-- End Col -->
<div class="col-sm-6 col-lg-4 mb-5">
<!-- Card -->
<a class="card card-flush h-100" href="#" data-aos="fade-up" data-aos-delay="200">
<img class="card-img" src="assets/img/480x320/img35.jpg" alt="Image Description">
<div class="card-body">
<span class="card-subtitle text-body">Learn about other solutions</span>
<h4 class="card-title text-inherit">Explore the Snippets tool</h4>
<p class="card-text text-body">Quickly Front sample components, copy-paste codes.</p>
</div>
</a>
<!-- End Card -->
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
<!-- Card Info -->
<div class="text-center">
<div class="card card-info-link card-sm">
<div class="card-body">
Want to read more? <a class="card-link ms-2" href="#">Go here <span class="bi-chevron-right small ms-1"></span></a>
</div>
</div>
</div>
<!-- End Card Info -->
</div>
<!-- End Card Grid -->
</main>
<!-- ========== END MAIN CONTENT ========== -->
<!-- ========== FOOTER ========== -->
<footer class="bg-light">
<div class="container pb-1 pb-lg-7">
<div class="row content-space-t-2">
<div class="col-lg-3 mb-7 mb-lg-0">
<!-- Logo -->
<div class="mb-5">
<a class="navbar-brand" href="index.html" aria-label="Space">
<img class="navbar-brand-logo" src="assets/svg/logos/logo.svg" alt="Image Description">
</a>
</div>
<!-- End Logo -->
<!-- List -->
<ul class="list-unstyled list-py-1">
<li><a class="link-sm link-secondary" href="#"><i class="bi-geo-alt-fill me-1"></i> 153 Williamson Plaza, Maggieberg</a></li>
<li><a class="link-sm link-secondary" href="tel:1-062-109-9222"><i class="bi-telephone-inbound-fill me-1"></i> +1 (062) 109-9222</a></li>
</ul>
<!-- End List -->
</div>
<!-- End Col -->
<div class="col-sm mb-7 mb-sm-0">
<h5 class="mb-3">Company</h5>
<!-- List -->
<ul class="list-unstyled list-py-1 mb-0">
<li><a class="link-sm link-secondary" href="#">About</a></li>
<li><a class="link-sm link-secondary" href="#">Careers <span class="badge bg-warning text-dark rounded-pill ms-1">We're hiring</span></a></li>
<li><a class="link-sm link-secondary" href="#">Blog</a></li>
<li><a class="link-sm link-secondary" href="#">Customers <i class="bi-box-arrow-up-right small ms-1"></i></a></li>
<li><a class="link-sm link-secondary" href="#">Hire us</a></li>
</ul>
<!-- End List -->
</div>
<!-- End Col -->
<div class="col-sm mb-7 mb-sm-0">
<h5 class="mb-3">Features</h5>
<!-- List -->
<ul class="list-unstyled list-py-1 mb-0">
<li><a class="link-sm link-secondary" href="#">Press <i class="bi-box-arrow-up-right small ms-1"></i></a></li>
<li><a class="link-sm link-secondary" href="#">Release Notes</a></li>
<li><a class="link-sm link-secondary" href="#">Integrations</a></li>
<li><a class="link-sm link-secondary" href="#">Pricing</a></li>
</ul>
<!-- End List -->
</div>
<!-- End Col -->
<div class="col-sm mb-7 mb-sm-0">
<h5 class="mb-3">Documentation</h5>
<!-- List -->
<ul class="list-unstyled list-py-1 mb-0">
<li><a class="link-sm link-secondary" href="#">Support</a></li>
<li><a class="link-sm link-secondary" href="#">Docs</a></li>
<li><a class="link-sm link-secondary" href="#">Status</a></li>
<li><a class="link-sm link-secondary" href="#">API Reference</a></li>
<li><a class="link-sm link-secondary" href="#">Tech Requirements</a></li>
</ul>
<!-- End List -->
</div>
<!-- End Col -->
<div class="col-sm">
<h5 class="mb-3">Resources</h5>
<!-- List -->
<ul class="list-unstyled list-py-1 mb-5">
<li><a class="link-sm link-secondary" href="#"><i class="bi-question-circle-fill me-1"></i> Help</a></li>
<li><a class="link-sm link-secondary" href="#"><i class="bi-person-circle me-1"></i> Your Account</a></li>
</ul>
<!-- End List -->
</div>
<!-- End Col -->
</div>
<!-- End Row -->
<div class="border-top my-7"></div>
<div class="row mb-7">
<div class="col-sm mb-3 mb-sm-0">
<!-- Socials -->
<ul class="list-inline list-separator mb-0">
<li class="list-inline-item">
<a class="text-body" href="#">Privacy & Policy</a>
</li>
<li class="list-inline-item">
<a class="text-body" href="#">Terms</a>
</li>
<li class="list-inline-item">
<a class="text-body" href="#">Site Map</a>
</li>
</ul>
<!-- End Socials -->
</div>
<div class="col-sm-auto">
<!-- Socials -->
<ul class="list-inline mb-0">
<li class="list-inline-item">
<a class="btn btn-soft-secondary btn-xs btn-icon" href="#">
<i class="bi-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn btn-soft-secondary btn-xs btn-icon" href="#">
<i class="bi-google"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn btn-soft-secondary btn-xs btn-icon" href="#">
<i class="bi-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn btn-soft-secondary btn-xs btn-icon" href="#">
<i class="bi-github"></i>
</a>
</li>
<li class="list-inline-item">
<!-- Button Group -->
<div class="btn-group">
<button type="button" class="btn btn-soft-secondary btn-xs dropdown-toggle" id="footerSelectLanguage" data-bs-toggle="dropdown" aria-expanded="false" data-bs-dropdown-animation>
<span class="d-flex align-items-center">
<img class="avatar avatar-xss avatar-circle me-2" src="assets/vendor/flag-icon-css/flags/1x1/us.svg" alt="Image description" width="16" />
<span>English (US)</span>
</span>
</button>
<div class="dropdown-menu" aria-labelledby="footerSelectLanguage">
<a class="dropdown-item d-flex align-items-center active" href="#">
<img class="avatar avatar-xss avatar-circle me-2" src="assets/vendor/flag-icon-css/flags/1x1/us.svg" alt="Image description" width="16" />
<span>English (US)</span>
</a>
<a class="dropdown-item d-flex align-items-center" href="#">
<img class="avatar avatar-xss avatar-circle me-2" src="assets/vendor/flag-icon-css/flags/1x1/de.svg" alt="Image description" width="16" />
<span>Deutsch</span>
</a>
<a class="dropdown-item d-flex align-items-center" href="#">
<img class="avatar avatar-xss avatar-circle me-2" src="assets/vendor/flag-icon-css/flags/1x1/es.svg" alt="Image description" width="16" />
<span>Español</span>
</a>
<a class="dropdown-item d-flex align-items-center" href="#">
<img class="avatar avatar-xss avatar-circle me-2" src="assets/vendor/flag-icon-css/flags/1x1/cn.svg" alt="Image description" width="16" />
<span>中文 (繁體)</span>
</a>
</div>
</div>
<!-- End Button Group -->
</li>
</ul>
<!-- End Socials -->
</div>
</div>
<!-- Copyright -->
<div class="w-md-85 text-lg-center mx-lg-auto">
<p class="text-muted small">© Front. 2021 Htmlstream. All rights reserved.</p>
<p class="text-muted small">When you visit or interact with our sites, services or tools, we or our authorised service providers may use cookies for storing information to help provide you with a better, faster and safer experience and for marketing purposes.</p>
</div>
<!-- End Copyright -->
</div>
</footer>
<!-- ========== END FOOTER ========== -->
<!-- ========== SECONDARY CONTENTS ========== -->
<!-- Sign Up -->
<div class="modal fade" id="signupModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<!-- Header -->
<div class="modal-close">
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<!-- End Header -->
<!-- Body -->
<div class="modal-body">
<!-- Log in -->
<div id="signupModalFormLogin" style="display: none; opacity: 0;">
<!-- Heading -->
<div class="text-center mb-7">
<h2>Log in</h2>
<p>Don't have an account yet?
<a class="js-animation-link link" href="javascript:;" role="button" data-hs-show-animation-options='{
"targetSelector": "#signupModalFormSignup",
"groupName": "idForm"
}'>Sign up</a>
</p>
</div>
<!-- End Heading -->
<div class="d-grid gap-2">
<a class="btn btn-white btn-lg" href="#">
<span class="d-flex justify-content-center align-items-center">
<img class="avatar avatar-xss me-2" src="assets/svg/brands/google-icon.svg" alt="Image Description">
Log in with Google
</span>
</a>
<a class="js-animation-link btn btn-primary btn-lg" href="#" data-hs-show-animation-options='{
"targetSelector": "#signupModalFormLoginWithEmail",
"groupName": "idForm"
}'>Log in with Email</a>
</div>
</div>
<!-- End Log in -->
<!-- Log in with Modal -->
<div id="signupModalFormLoginWithEmail" style="display: none; opacity: 0;">
<!-- Heading -->
<div class="text-center mb-7">
<h2>Log in</h2>
<p>Don't have an account yet?
<a class="js-animation-link link" href="javascript:;" role="button" data-hs-show-animation-options='{
"targetSelector": "#signupModalFormSignup",
"groupName": "idForm"
}'>Sign up</a>
</p>
</div>
<!-- End Heading -->
<form class="js-validate needs-validation" novalidate>
<!-- Form -->
<div class="mb-3">
<label class="form-label" for="signupModalFormLoginEmail">Your email</label>
<input type="email" class="form-control form-control-lg" name="email" id="signupModalFormLoginEmail" placeholder="email@site.com" aria-label="email@site.com" required>
<span class="invalid-feedback">Please enter a valid email address.</span>
</div>
<!-- End Form -->
<!-- Form -->
<div class="mb-3">
<div class="d-flex justify-content-between align-items-center">
<label class="form-label" for="signupModalFormLoginPassword">Password</label>
<a class="js-animation-link form-label-link" href="javascript:;" data-hs-show-animation-options='{
"targetSelector": "#signupModalFormResetPassword",
"groupName": "idForm"
}'>Forgot Password?</a>
</div>
<input type="password" class="form-control form-control-lg" name="password" id="signupModalFormLoginPassword" placeholder="8+ characters required" aria-label="8+ characters required" required minlength="8">
<span class="invalid-feedback">Please enter a valid password.</span>
</div>
<!-- End Form -->
<div class="d-grid mb-3">
<button type="submit" class="btn btn-primary form-control-lg">Log in</button>
</div>
</form>
</div>
<!-- End Log in with Modal -->
<!-- Sign up -->
<div id="signupModalFormSignup">
<!-- Heading -->
<div class="text-center mb-7">
<h2>Sign up</h2>
<p>Already have an account?
<a class="js-animation-link link" href="javascript:;" role="button" data-hs-show-animation-options='{
"targetSelector": "#signupModalFormLogin",
"groupName": "idForm"
}'>Log in</a>
</p>
</div>
<!-- End Heading -->
<div class="d-grid gap-3">
<a class="btn btn-white btn-lg" href="#">
<span class="d-flex justify-content-center align-items-center">
<img class="avatar avatar-xss me-2" src="assets/svg/brands/google-icon.svg" alt="Image Description">
Sign up with Google
</span>
</a>
<a class="js-animation-link btn btn-primary btn-lg" href="#" data-hs-show-animation-options='{
"targetSelector": "#signupModalFormSignupWithEmail",
"groupName": "idForm"
}'>Sign up with Email</a>
<div class="text-center">
<p class="small mb-0">By continuing you agree to our <a href="#">Terms and Conditions</a></p>
</div>
</div>
</div>
<!-- End Sign up -->
<!-- Sign up with Modal -->
<div id="signupModalFormSignupWithEmail" style="display: none; opacity: 0;">
<!-- Heading -->
<div class="text-center mb-7">
<h2>Sign up</h2>
<p>Already have an account?
<a class="js-animation-link link" href="javascript:;" role="button" data-hs-show-animation-options='{
"targetSelector": "#signupModalFormLogin",
"groupName": "idForm"
}'>Log in</a>
</p>
</div>
<!-- End Heading -->
<form class="js-validate need-validate" novalidate>
<!-- Form -->
<div class="mb-3">
<label class="form-label" for="signupModalFormSignupEmail">Your email</label>
<input type="email" class="form-control form-control-lg" name="email" id="signupModalFormSignupEmail" placeholder="email@site.com" aria-label="email@site.com" required>
<span class="invalid-feedback">Please enter a valid email address.</span>
</div>
<!-- End Form -->
<!-- Form -->
<div class="mb-3">
<label class="form-label" for="signupModalFormSignupPassword">Password</label>
<input type="password" class="form-control form-control-lg" name="password" id="signupModalFormSignupPassword" placeholder="8+ characters required" aria-label="8+ characters required" required>
<span class="invalid-feedback">Your password is invalid. Please try again.</span>
</div>
<!-- End Form -->
<!-- Form -->
<div class="mb-3" data-hs-validation-validate-class>
<label class="form-label" for="signupModalFormSignupConfirmPassword">Confirm password</label>
<input type="password" class="form-control form-control-lg" name="confirmPassword" id="signupModalFormSignupConfirmPassword" placeholder="8+ characters required" aria-label="8+ characters required" required data-hs-validation-equal-field="#signupModalFormSignupPassword">
<span class="invalid-feedback">Password does not match the confirm password.</span>
</div>
<!-- End Form -->
<div class="d-grid mb-3">
<button type="submit" class="btn btn-primary form-control-lg">Sign up</button>
</div>
<div class="text-center">
<p class="small mb-0">By continuing you agree to our <a href="#">Terms and Conditions</a></p>
</div>
</form>
</div>
<!-- End Sign up with Modal -->
<!-- Reset Password -->
<div id="signupModalFormResetPassword" style="display: none; opacity: 0;">
<!-- Heading -->
<div class="text-center mb-7">
<h2>Forgot password?</h2>
<p>Enter the email address you used when you joined and we'll send you instructions to reset your password.</p>
</div>
<!-- En dHeading -->
<form class="js-validate need-validate" novalidate>
<div class="mb-3">
<!-- Form -->
<div class="d-flex justify-content-between align-items-center">
<label class="form-label" for="signupModalFormResetPasswordEmail" tabindex="0">Your email</label>
<a class="js-animation-link form-label-link" href="javascript:;" data-hs-show-animation-options='{
"targetSelector": "#signupModalFormLogin",
"groupName": "idForm"
}'>
<i class="bi-chevron-left small"></i> Back to Log in
</a>
</div>
<input type="email" class="form-control form-control-lg" name="email" id="signupModalFormResetPasswordEmail" tabindex="1" placeholder="Enter your email address" aria-label="Enter your email address" required>
<span class="invalid-feedback">Please enter a valid email address.</span>
<!-- End Form -->
</div>
<div class="d-grid">
<button type="submit" class="btn btn-primary form-control-lg">Submit</button>
</div>
</form>
</div>
<!-- End Reset Password -->
</div>
<!-- End Body -->
<!-- Footer -->
<div class="modal-footer d-block text-center py-sm-5">
<small class="text-cap mb-4">Trusted by the world's best teams</small>
<div class="w-85 mx-auto">
<div class="row justify-content-between">
<div class="col">
<img class="img-fluid" src="assets/svg/brands/gitlab-gray.svg" alt="Logo">
</div>
<!-- End Col -->
<div class="col">
<img class="img-fluid" src="assets/svg/brands/fitbit-gray.svg" alt="Logo">
</div>
<!-- End Col -->
<div class="col">
<img class="img-fluid" src="assets/svg/brands/flow-xo-gray.svg" alt="Logo">
</div>
<!-- End Col -->
<div class="col">
<img class="img-fluid" src="assets/svg/brands/layar-gray.svg" alt="Logo">
</div>
<!-- End Col -->
</div>
</div>
<!-- End Row -->
</div>
<!-- End Footer -->
</div>
</div>
</div>
<!-- Go To -->
<a class="js-go-to go-to position-fixed" href="javascript:;" style="visibility: hidden;" data-hs-go-to-options='{
"offsetTop": 700,
"position": {
"init": {
"right": "2rem"
},
"show": {
"bottom": "2rem"
},
"hide": {
"bottom": "-2rem"
}
}
}'>
<i class="bi-chevron-up"></i>
</a>
<!-- ========== END SECONDARY CONTENTS ========== -->
<!-- JS Implementing Plugins -->
<script src="assets/js/vendor.min.js"></script>
<script src="assets/vendor/aos/dist/aos.js"></script>
<!-- JS Front -->
<script src="assets/js/theme.min.js"></script>
<!-- JS Plugins Init. -->
<script>
(function() {
// INITIALIZATION OF HEADER
// =======================================================
new HSHeader('#header').init()
// INITIALIZATION OF MEGA MENU
// =======================================================
new HSMegaMenu('.js-mega-menu', {
desktop: {
position: 'left'
}