-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.html
1156 lines (1046 loc) · 65.8 KB
/
install.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
<html lang="en"><head>
<!-- Title -->
<title>Classic Software | Front - Responsive Website Template</title>
<!-- Required Meta Tags Always Come First -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon -->
<link rel="shortcut icon" href="https://htmlstream.com/front/favicon.ico">
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<!-- CSS Implementing Plugins -->
<link rel="stylesheet" href="https://htmlstream.com/front/assets/css/vendor.min.css">
<!-- CSS Front Template -->
<link rel="stylesheet" href="https://htmlstream.com/front/assets/css/theme.min.css?v=1.0">
</head>
<body>
<!-- ========== HEADER ========== -->
<header id="header" class="header header-box-shadow-on-scroll header-bg-transparent header-abs-top header-show-hide header-untransitioned" data-hs-header-options="{
"fixMoment": 1000,
"fixEffect": "slide"
}">
<div class="header-section">
<div id="logoAndNav" class="container">
<!-- Nav -->
<nav class="js-mega-menu navbar navbar-expand-lg hs-menu-initialized hs-menu-horizontal">
<!-- Logo -->
<a class="navbar-brand" href="./index.html" aria-label="Front">
<img src="https://htmlstream.com/front/assets/svg/logos/logo.svg" alt="Logo">
</a>
<!-- End Logo -->
<!-- Responsive Toggle Button -->
<button type="button" class="navbar-toggler btn btn-icon btn-sm rounded-circle" aria-label="Toggle navigation" aria-expanded="false" aria-controls="navBar" data-toggle="collapse" data-target="#navBar">
<span class="navbar-toggler-default">
<svg width="14" height="14" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<path fill="currentColor" d="M17.4,6.2H0.6C0.3,6.2,0,5.9,0,5.5V4.1c0-0.4,0.3-0.7,0.6-0.7h16.9c0.3,0,0.6,0.3,0.6,0.7v1.4C18,5.9,17.7,6.2,17.4,6.2z M17.4,14.1H0.6c-0.3,0-0.6-0.3-0.6-0.7V12c0-0.4,0.3-0.7,0.6-0.7h16.9c0.3,0,0.6,0.3,0.6,0.7v1.4C18,13.7,17.7,14.1,17.4,14.1z"></path>
</svg>
</span>
<span class="navbar-toggler-toggled">
<svg width="14" height="14" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<path fill="currentColor" d="M11.5,9.5l5-5c0.2-0.2,0.2-0.6-0.1-0.9l-1-1c-0.3-0.3-0.7-0.3-0.9-0.1l-5,5l-5-5C4.3,2.3,3.9,2.4,3.6,2.6l-1,1 C2.4,3.9,2.3,4.3,2.5,4.5l5,5l-5,5c-0.2,0.2-0.2,0.6,0.1,0.9l1,1c0.3,0.3,0.7,0.3,0.9,0.1l5-5l5,5c0.2,0.2,0.6,0.2,0.9-0.1l1-1 c0.3-0.3,0.3-0.7,0.1-0.9L11.5,9.5z"></path>
</svg>
</span>
</button>
<!-- End Responsive Toggle Button -->
<!-- Navigation -->
<div id="navBar" class="collapse navbar-collapse">
<div class="navbar-body header-abs-top-inner">
<ul class="navbar-nav">
<!-- Home -->
<li class="hs-has-mega-menu navbar-nav-item">
<a id="homeMegaMenu" class="hs-mega-menu-invoker nav-link nav-link-toggle active" href="javascript:;" aria-haspopup="true" aria-expanded="false">Landings</a>
<!-- Home - Mega Menu -->
<div class="hs-mega-menu dropdown-menu w-100 hs-mega-menu-desktop-lg" aria-labelledby="homeMegaMenu" style="display: none;">
<div class="row no-gutters">
<div class="col-lg-6">
<!-- Banner Image -->
<div class="navbar-banner" style="background-image: url(https://htmlstream.com/front/assets/img/750x750/img1.jpg);">
<div class="navbar-banner-content">
<div class="mb-4">
<span class="h2 d-block text-white">Branding Works</span>
<p class="text-white">Experience a level of our quality in both design & customization works.</p>
</div>
<a class="btn btn-primary btn-sm transition-3d-hover" href="#">Learn More <i class="fas fa-angle-right fa-sm ml-1"></i></a>
</div>
</div>
<!-- End Banner Image -->
</div>
<div class="col-lg-6">
<div class="row mega-menu-body">
<div class="col-sm-6 mb-3 mb-sm-0">
<span class="d-block h5">Classic</span>
<a class="dropdown-item " href="./index.html">Agency</a>
<a class="dropdown-item " href="./landing-classic-analytics.html">Analytics <span class="badge badge-primary badge-pill ml-2">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" target="_blank">Advertisement <span class="badge badge-primary badge-pill ml-2">Hot</span></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 active" href="./landing-classic-software.html">Software</a>
<a class="dropdown-item " href="./landing-classic-business.html">Business</a>
</div>
<div class="col-sm-6">
<span class="d-block h5">App</span>
<div class="mb-3">
<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="d-block h5">Onepages</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 badge-primary badge-pill ml-2">Hot</span></a>
</div>
</div>
</div>
</div>
</div>
<!-- End Home - Mega Menu -->
</li>
<!-- End Home -->
<!-- Pages -->
<li class="hs-has-sub-menu navbar-nav-item">
<a id="pagesMegaMenu" class="hs-mega-menu-invoker nav-link nav-link-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false" aria-labelledby="pagesSubMenu">Pages</a>
<!-- Pages - Submenu -->
<div id="pagesSubMenu" class="hs-sub-menu dropdown-menu hs-sub-menu-desktop-lg" aria-labelledby="pagesMegaMenu" style="min-width: 230px; display: none;">
<!-- Account -->
<div class="hs-has-sub-menu">
<a id="navLinkPagesAccount" class="hs-mega-menu-invoker dropdown-item dropdown-item-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false" aria-controls="navSubmenuPagesAccount">Account <span class="badge badge-success badge-pill ml-2">New</span></a>
<div id="navSubmenuPagesAccount" class="hs-sub-menu dropdown-menu hs-sub-menu-desktop-lg" aria-labelledby="navLinkPagesAccount" style="min-width: 230px; display: none;">
<a class="dropdown-item " href="./account-overview.html">Personal info</a>
<a class="dropdown-item " href="./account-login-and-security.html">Login & 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-billing.html">Plans & payment</a>
<a class="dropdown-item " href="./account-address.html">Address</a>
<a class="dropdown-item " href="./account-teams.html">Teams</a>
</div>
</div>
<!-- Account -->
<!-- Company -->
<div class="hs-has-sub-menu">
<a id="navLinkPagesCompany" class="hs-mega-menu-invoker dropdown-item dropdown-item-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false" aria-controls="navSubmenuPagesCompany">Company</a>
<div id="navSubmenuPagesCompany" class="hs-sub-menu dropdown-menu hs-sub-menu-desktop-lg" aria-labelledby="navLinkPagesCompany" style="min-width: 230px; display: none;">
<a class="dropdown-item " href="./page-about-agency.html">About Agency</a>
<a class="dropdown-item " href="./page-services-agency.html">Services Agency</a>
<a class="dropdown-item " href="./page-customers.html">Customers</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-single.html">Careers Single</a>
<a class="dropdown-item " href="./page-hire-us.html">Hire Us</a>
</div>
</div>
<!-- Company -->
<!-- Portfolio -->
<div class="hs-has-sub-menu">
<a id="navLinkPagesPortfolio" class="hs-mega-menu-invoker dropdown-item dropdown-item-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false" aria-controls="navSubmenuPagesPortfolio">Portfolio</a>
<div id="navSubmenuPagesPortfolio" class="hs-sub-menu dropdown-menu hs-sub-menu-desktop-lg" aria-labelledby="navLinkPagesPortfolio" style="min-width: 230px; display: none;">
<a class="dropdown-item " href="./portfolio-grid.html">Grid</a>
<a class="dropdown-item " href="./portfolio-masonry.html">Masonry</a>
<a class="dropdown-item " href="./portfolio-modern.html">Modern</a>
<div class="dropdown-divider"></div>
<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 class="dropdown-divider"></div>
<a class="dropdown-item " href="./portfolio-single-page-list.html">Single Page List</a>
<a class="dropdown-item " href="./portfolio-single-page-grid.html">Single Page Grid</a>
<a class="dropdown-item " href="./portfolio-single-page-masonry.html">Single Page Masonry</a>
</div>
</div>
<!-- End Portfolio -->
<!-- Login -->
<div class="hs-has-sub-menu">
<a id="navLinkPagesLogin" class="hs-mega-menu-invoker dropdown-item dropdown-item-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false" aria-controls="navSubmenuPagesLogin">Login & Signup</a>
<div id="navSubmenuPagesLogin" class="hs-sub-menu dropdown-menu hs-sub-menu-desktop-lg" aria-labelledby="navLinkPagesLogin" style="min-width: 230px; display: none;">
<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-recover-account.html">Recover Account</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-recover-account-simple.html">Recover Account Simple</a>
</div>
</div>
<!-- Signup -->
<!-- Contacts -->
<div class="hs-has-sub-menu">
<a id="navLinkContactsServices" class="hs-mega-menu-invoker dropdown-item dropdown-item-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false" aria-controls="navSubmenuContactsServices">Contacts</a>
<div id="navSubmenuContactsServices" class="hs-sub-menu dropdown-menu hs-sub-menu-desktop-lg" aria-labelledby="navLinkContactsServices" style="min-width: 230px; display: none;">
<a class="dropdown-item " href="./page-contacts-agency.html">Contacts Agency</a>
<a class="dropdown-item " href="./page-contacts-start-up.html">Contacts Start-Up</a>
</div>
</div>
<!-- Contacts -->
<!-- Utilities -->
<div class="hs-has-sub-menu">
<a id="navLinkPagesUtilities" class="hs-mega-menu-invoker dropdown-item dropdown-item-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false" aria-controls="navSubmenuPagesUtilities">Utilities</a>
<div id="navSubmenuPagesUtilities" class="hs-sub-menu dropdown-menu hs-sub-menu-desktop-lg" aria-labelledby="navLinkPagesUtilities" style="min-width: 230px; display: none;">
<a class="dropdown-item " href="./page-pricing.html">Pricing</a>
<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>
</div>
</div>
<!-- Utilities -->
<!-- Specialty -->
<div class="hs-has-sub-menu">
<a id="navLinkPagesSpecialty" class="hs-mega-menu-invoker dropdown-item dropdown-item-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false" aria-controls="navSubmenuPagesSpecialty">Specialty</a>
<div id="navSubmenuPagesSpecialty" class="hs-sub-menu dropdown-menu hs-sub-menu-desktop-lg" aria-labelledby="navLinkPagesSpecialty" style="min-width: 230px; display: none;">
<a class="dropdown-item " href="./page-cover-page.html">Cover Page</a>
<a class="dropdown-item " href="./page-coming-soon.html">Coming Soon</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>
</div>
<!-- Specialty -->
</div>
<!-- End Pages - Submenu -->
</li>
<!-- End Pages -->
<!-- Blog -->
<li class="hs-has-sub-menu navbar-nav-item">
<a id="blogMegaMenu" class="hs-mega-menu-invoker nav-link nav-link-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false" aria-labelledby="blogSubMenu">Blog</a>
<!-- Blog - Submenu -->
<div id="blogSubMenu" class="hs-sub-menu dropdown-menu hs-sub-menu-desktop-lg" aria-labelledby="blogMegaMenu" style="min-width: 230px; display: none;">
<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-profile.html">Blog Profile</a>
<a class="dropdown-item " href="./blog-single-article.html">Single Article</a>
</div>
<!-- End Submenu -->
</li>
<!-- End Blog -->
<!-- Shop -->
<li class="hs-has-mega-menu navbar-nav-item" data-hs-mega-menu-item-options="{
"desktop": {
"position": "right",
"maxWidth": "440px"
}
}">
<a id="shopMegaMenu" class="hs-mega-menu-invoker nav-link nav-link-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false">Shop</a>
<!-- Shop - Mega Menu -->
<div class="hs-mega-menu dropdown-menu hs-position-right hs-mega-menu-desktop-lg" aria-labelledby="shopMegaMenu" style="max-width: 440px; display: none;">
<div class="mega-menu-body">
<span class="d-block h5">Shop Elements</span>
<div class="row">
<div class="col-sm-6">
<a class="dropdown-item " href="./shop-classic.html">Classic</a>
<a class="dropdown-item " href="./shop-categories.html">Categories</a>
<a class="dropdown-item " href="./shop-categories-sidebar.html">Categories Sidebar</a>
<a class="dropdown-item " href="./shop-products-grid.html">Products Grid</a>
<a class="dropdown-item " href="./shop-products-list.html">Products List</a>
</div>
<div class="col-sm-6">
<a class="dropdown-item " href="./shop-single-product.html">Single Product</a>
<a class="dropdown-item " href="./shop-empty-cart.html">Empty Cart</a>
<a class="dropdown-item " href="./shop-cart.html">Cart</a>
<a class="dropdown-item " href="./shop-checkout.html">Checkout</a>
<a class="dropdown-item " href="./shop-order-completed.html">Order Completed</a>
</div>
</div>
</div>
<!-- Mega Menu Banner -->
<div class="navbar-product-banner">
<div class="d-flex align-items-end">
<img class="img-fluid mr-4" src="https://htmlstream.com/front/assets/img/mockups/img4.png" alt="Image Description">
<div class="navbar-product-banner-content">
<div class="mb-4">
<span class="h4 d-block text-primary">Win T-shirt</span>
<p>Win one of our Front brand T-shirts.</p>
</div>
<a class="btn btn-sm btn-soft-primary transition-3d-hover" href="https://htmlstream.com/front/shop-classic.html">Learn More <i class="fas fa-angle-right fa-sm ml-1"></i></a>
</div>
</div>
</div>
<!-- End Mega Menu Banner -->
</div>
<!-- End Shop - Mega Menu -->
</li>
<!-- End Shop -->
<!-- Demos -->
<li class="hs-has-mega-menu navbar-nav-item" data-hs-mega-menu-item-options="{
"desktop": {
"position": "right",
"maxWidth": "900px"
}
}">
<a id="demosMegaMenu" class="hs-mega-menu-invoker nav-link nav-link-toggle " href="javascript:;" aria-haspopup="true" aria-expanded="false">Demos</a>
<!-- Demos - Mega Menu -->
<div class="hs-mega-menu dropdown-menu w-100 hs-mega-menu-desktop-lg hs-position-right" aria-labelledby="demosMegaMenu" style="max-width: 900px; display: none;">
<div class="row no-gutters">
<div class="col-lg-8">
<div class="navbar-promo-card-deck">
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link" href="./demo-course/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-67.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">Course</span>
<span class="navbar-promo-text">Learn On-demand demo</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link" href="./demo-app-marketplace/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-45.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">App Marketplace</span>
<span class="navbar-promo-text">Marketplace app demo</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
</div>
<div class="navbar-promo-card-deck">
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link" href="./demo-help-desk/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-4.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">Help Desk</span>
<span class="navbar-promo-text">Help desk demo</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link" href="./demo-real-estate/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-13.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">Real Estate <span class="badge badge-success badge-pill ml-1">New</span></span>
<span class="navbar-promo-text">Real estate demo</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
</div>
<div class="navbar-promo-card-deck">
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link" href="./demo-jobs/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-19.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">Jobs <span class="badge badge-success badge-pill ml-1">New</span></span>
<span class="navbar-promo-text">Jobs demo</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link disabled" href="javascript:;">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-28.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">New demo</span>
<span class="navbar-promo-text">Coming soon...</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
</div>
</div>
<!-- Promo -->
<div class="col-lg-4 navbar-promo d-none d-lg-block">
<a class="d-block navbar-promo-inner" href="#">
<div class="position-relative">
<img class="img-fluid rounded mb-3" src="https://htmlstream.com/front/assets/img/380x227/img1.jpg" alt="Image Description">
</div>
<span class="navbar-promo-text font-size-1">Front makes you look at things from a different perspectives.</span>
</a>
</div>
<!-- End Promo -->
</div>
</div>
<!-- End Demos - Mega Menu -->
</li>
<!-- End Demos -->
<!-- Docs -->
<li class="hs-has-mega-menu navbar-nav-item" data-hs-mega-menu-item-options="{
"desktop": {
"position": "right",
"maxWidth": "260px"
}
}">
<a id="docsMegaMenu" class="hs-mega-menu-invoker nav-link nav-link-toggle" href="javascript:;" aria-haspopup="true" aria-expanded="false">Docs</a>
<!-- Docs - Submenu -->
<div class="hs-mega-menu dropdown-menu hs-mega-menu-desktop-lg hs-position-right" aria-labelledby="docsMegaMenu" style="min-width: 330px; max-width: 260px; display: none;">
<!-- Promo Item -->
<div class="navbar-promo-item">
<a class="navbar-promo-link" href="./documentation/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-2.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">
Documentation
<span class="badge badge-primary badge-pill ml-1">v3.3</span>
</span>
<small class="navbar-promo-text">Development guides</small>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
<!-- Promo Item -->
<div class="navbar-promo-item">
<a class="navbar-promo-link" href="./snippets/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-1.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">Snippets</span>
<small class="navbar-promo-text">Start building</small>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
<div class="navbar-promo-footer">
<!-- List -->
<div class="row no-gutters">
<div class="col-6">
<div class="navbar-promo-footer-item">
<span class="navbar-promo-footer-text">Check what's new</span>
<a class="navbar-promo-footer-text" href="./documentation/changelog.html"> Changelog</a>
</div>
</div>
<div class="col-6 navbar-promo-footer-ver-divider">
<div class="navbar-promo-footer-item">
<span class="navbar-promo-footer-text">Have a question?</span>
<a class="navbar-promo-footer-text" href="http://htmlstream.com/contact-us"> Contact us</a>
</div>
</div>
</div>
<!-- End List -->
</div>
</div>
<!-- End Docs - Submenu -->
</li>
<!-- End Docs -->
<!-- Button -->
<li class="navbar-nav-last-item">
<a class="btn btn-sm btn-primary transition-3d-hover" href="https://themes.getbootstrap.com/product/front-multipurpose-responsive-template/" target="_blank">Buy Now</a>
</li>
<!-- End Button -->
</ul>
</div>
</div>
<!-- End Navigation -->
</nav>
<!-- End Nav -->
</div>
</div>
</header>
<!-- ========== END HEADER ========== -->
<!-- ========== MAIN CONTENT ========== -->
<main id="content" role="main">
<!-- Hero Section -->
<div class="gradient-y-sm-primary position-relative z-index-2 overflow-hidden">
<div class="container space-top-2 space-top-lg-4 position-relative">
<!-- Title -->
<div class="w-md-80 w-lg-50 text-center mx-md-auto mb-5 mb-md-9">
<h1 class="display-4 mb-3">Software for People</h1>
<p class="lead">Install Front on your own infrastructure.</p>
</div>
<!-- End Title -->
<!-- Slick Carousel -->
<div class="js-slick-carousel slick slick-gutters-3 z-index-2 slick-initialized slick-slider slick-dotted" data-hs-slick-carousel-options="{
"slidesToShow": 5,
"dots": true,
"dotsClass": "slick-pagination d-lg-none",
"responsive": [{
"breakpoint": 1200,
"settings": {
"slidesToShow": 4
}
}, {
"breakpoint": 992,
"settings": {
"slidesToShow": 3
}
}, {
"breakpoint": 768,
"settings": {
"slidesToShow": 2
}
}, {
"breakpoint": 554,
"settings": {
"slidesToShow": 1
}
}]
}">
<div class="slick-list draggable"><div class="slick-track" style="opacity: 1; width: 1880px; transform: translate3d(-1504px, 0px, 0px);"><div class="js-slide mt-1 slick-slide" tabindex="-1" role="tabpanel" id="slick-slide00" aria-describedby="slick-slide-control00" style="width: 346px;" data-slick-index="0" aria-hidden="true">
<!-- Icon Block -->
<article class="card shadow-sm max-w-27rem transition-3d-hover mx-auto mb-5">
<div class="card-header bg-primary text-center rounded-lg-top">
<div class="avatar d-block bg-white rounded p-2 mx-auto">
<img class="avatar-img" src="https://htmlstream.com/front/assets/img/160x160/img12.png" alt="Image Description">
</div>
</div>
<div class="card-body">
<div class="mb-3">
<h2 class="h4 mb-1">Atlassian</h2>
<small class="d-block text-body">Developer tools</small>
</div>
<a class="btn btn-sm btn-block btn-primary" href="#" tabindex="-1">Install</a>
</div>
</article>
<!-- End Icon Block -->
</div><div class="js-slide mt-1 slick-slide" tabindex="-1" role="tabpanel" id="slick-slide01" aria-describedby="slick-slide-control01" style="width: 346px;" data-slick-index="1" aria-hidden="true">
<!-- Icon Block -->
<article class="card shadow-sm max-w-27rem transition-3d-hover mx-auto mb-5">
<div class="card-header bg-danger text-center rounded-lg-top">
<div class="avatar d-block bg-white rounded p-2 mx-auto">
<img class="avatar-img" src="https://htmlstream.com/front/assets/img/160x160/img13.png" alt="Image Description">
</div>
</div>
<div class="card-body">
<div class="mb-3">
<h3 class="h4 mb-1">Asana</h3>
<small class="d-block text-body">Productivity</small>
</div>
<a class="btn btn-sm btn-block btn-primary" href="#" tabindex="-1">Install</a>
</div>
</article>
<!-- End Icon Block -->
</div><div class="js-slide mt-1 slick-slide" tabindex="-1" role="tabpanel" id="slick-slide02" aria-describedby="slick-slide-control02" style="width: 346px;" data-slick-index="2" aria-hidden="true">
<!-- Icon Block -->
<article class="card shadow-sm max-w-27rem transition-3d-hover mx-auto mb-5">
<div class="card-header bg-warning text-center rounded-lg-top">
<div class="avatar d-block bg-white rounded p-2 mx-auto">
<img class="avatar-img" src="https://htmlstream.com/front/assets/img/160x160/img14.png" alt="Image Description">
</div>
</div>
<div class="card-body">
<div class="mb-3">
<h4 class="mb-1">Slack</h4>
<small class="d-block text-body">Collaboration tool</small>
</div>
<a class="btn btn-sm btn-block btn-primary" href="#" tabindex="-1">Install</a>
</div>
</article>
<!-- End Icon Block -->
</div><div class="js-slide mt-1 slick-slide" tabindex="-1" role="tabpanel" id="slick-slide03" aria-describedby="slick-slide-control03" style="width: 346px;" data-slick-index="3" aria-hidden="true">
<!-- Icon Block -->
<article class="card shadow-sm max-w-27rem transition-3d-hover mx-auto mb-5">
<div class="card-header bg-success text-center rounded-lg-top">
<div class="avatar d-block bg-white rounded p-2 mx-auto">
<img class="avatar-img" src="https://htmlstream.com/front/assets/img/160x160/img15.png" alt="Image Description">
</div>
</div>
<div class="card-body">
<div class="mb-3">
<h4 class="mb-1">Spotify</h4>
<small class="d-block text-body">Streaming service</small>
</div>
<a class="btn btn-sm btn-block btn-primary" href="#" tabindex="-1">Install</a>
</div>
</article>
<!-- End Icon Block -->
</div><div class="js-slide mt-1 slick-slide slick-current slick-active" tabindex="0" role="tabpanel" id="slick-slide04" aria-describedby="slick-slide-control04" style="width: 346px;" data-slick-index="4" aria-hidden="false">
<!-- Icon Block -->
<article class="card shadow-sm max-w-27rem transition-3d-hover mx-auto mb-5">
<div class="card-header bg-primary text-center rounded-lg-top">
<div class="avatar d-block bg-white rounded p-2 mx-auto">
<img class="avatar-img" src="https://htmlstream.com/front/assets/img/160x160/img16.png" alt="Image Description">
</div>
</div>
<div class="card-body">
<div class="mb-3">
<h4 class="mb-1">DigitalOcean</h4>
<small class="d-block text-body">Cloud infrastructure</small>
</div>
<a class="btn btn-sm btn-block btn-primary" href="#" tabindex="0">Install</a>
</div>
</article>
<!-- End Icon Block -->
</div></div></div><ul class="slick-pagination d-lg-none" role="tablist" style=""><li class="" role="presentation"><span></span></li><li role="presentation" class=""><span></span></li><li role="presentation" class=""><span></span></li><li role="presentation" class=""><span></span></li><li role="presentation" class="slick-active"><span></span></li></ul></div>
<!-- End Slick Carousel -->
<!-- SVG Shapes -->
<figure class="position-absolute z-index-n1" style="top: -35rem; left: 50rem; width: 62rem; height: 62rem;">
<svg preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 260 260">
<circle fill="#e7eaf3" opacity=".7" cx="130" cy="130" r="130"></circle>
</svg>
</figure>
<figure class="position-absolute z-index-n1" style="top: 15rem; left: 70rem; width: 20rem; height: 20rem;">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/components/circled-stripe.svg" alt="Image Description">
</figure>
<figure class="position-absolute z-index-n1" style="bottom: 7rem; left: -3rem; width: 15rem; height: 15rem;">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/components/dots-3.svg" alt="Image Description">
</figure>
<!-- End SVG Shapes -->
</div>
<!-- SVG Bottom Shape -->
<figure class="position-absolute right-0 bottom-0 left-0">
<svg preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 1921 273">
<polygon fill="#fff" points="0,273 1921,273 1921,0 "></polygon>
</svg>
</figure>
<!-- End SVG Bottom Shape -->
</div>
<!-- End Hero Section -->
<!-- Features Section -->
<div class="overflow-hidden">
<div class="container space-top-2 space-top-lg-3 space-bottom-3">
<!-- Title -->
<div class="w-md-80 w-lg-50 text-center mx-md-auto mb-5 mb-md-9">
<h2>Features built for scale</h2>
<p>Get insights to dig down into what's powering your growth the most.</p>
</div>
<!-- End Title -->
<div class="row">
<div class="col-lg-8 mb-7 mb-lg-0">
<div class="row">
<div class="col-sm-6 mb-3 mb-sm-7">
<!-- Icon Blocks -->
<div class="pr-lg-6">
<figure class="max-w-6rem w-100 mb-4">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/icons/icon-2.svg" alt="SVG">
</figure>
<h3 class="h4">Smart Dashboards</h3>
<p class="text-body">This is where we really begin to visualize your napkin sketches and make them into beautiful pixels.</p>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 mb-3 mb-sm-7">
<!-- Icon Blocks -->
<div class="pr-lg-6">
<figure class="max-w-6rem w-100 mb-4">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/icons/icon-1.svg" alt="SVG">
</figure>
<h4>Control Center</h4>
<p class="text-body">Now that we've aligned the details, it's time to get things mapped out and organized.</p>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 mb-3 mb-sm-0">
<!-- Icon Blocks -->
<div class="pr-lg-6">
<figure class="max-w-6rem w-100 mb-4">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/icons/icon-15.svg" alt="SVG">
</figure>
<h4>Email Reports</h4>
<p class="text-body">We strive to embrace and drive change in our industry which allows us to keep our clients relevant.</p>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 mb-sm-0">
<!-- Icon Blocks -->
<div class="pr-lg-6">
<figure class="max-w-6rem w-100 mb-4">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/icons/icon-26.svg" alt="SVG">
</figure>
<h4>Forecasting</h4>
<p class="text-body">Staying focused allows us to turn every project we complete into something we love.</p>
</div>
<!-- End Icon Blocks -->
</div>
</div>
</div>
<div class="col-sm-8 col-md-6 col-lg-4">
<!-- Article -->
<article class="position-relative">
<a class="card shadow-none bg-img-hero w-100 min-h-450rem transition-3d-hover" href="#" style="background-image: url(https://htmlstream.com/front/assets/img/400x500/img26.jpg);">
<div class="card-body">
<h4>Adobe Ai</h4>
<p class="text-body">Access to the Adobe Illustrator techniques</p>
</div>
<div class="card-footer border-0 bg-transparent pt-0">
<span class="font-weight-bold">Browse tools <i class="fas fa-angle-right fa-sm ml-1"></i></span>
</div>
</a>
<!-- SVG Elements -->
<figure class="max-w-19rem w-100 position-absolute bottom-0 right-0 z-index-n1">
<div class="mb-n7 mr-n7">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/components/dots-2.svg" alt="Image Description">
</div>
</figure>
<!-- End SVG Elements -->
</article>
<!-- End Article -->
</div>
</div>
</div>
</div>
<!-- End Features Section -->
<!-- CTA Section -->
<div class="container">
<div class="w-lg-85 mx-lg-auto">
<div class="card overflow-hidden p-4">
<div class="row justify-content-md-start align-items-md-center text-center text-md-left">
<div class="col-md-5 offset-md-3 mb-3 mb-md-0">
<h3 class="h4 mb-0">Revolutionizing the way your team works!</h3>
</div>
<div class="col-md-4 text-md-right">
<a class="btn btn-primary transition-3d-hover" href="#">Get Started</a>
</div>
</div>
<!-- SVG Component -->
<figure class="w-25 d-none d-md-block position-absolute top-0 left-0 mt-n2">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/illustrations/apps.svg" alt="Image Description">
</figure>
<!-- End SVG Component -->
</div>
</div>
</div>
<!-- End CTA Section -->
<!-- Features Section -->
<div class="container space-2 space-lg-3">
<!-- Title -->
<div class="w-md-80 w-lg-50 text-center mx-md-auto mb-5 mb-md-9">
<h2>Front makes designing easy and performance fast</h2>
</div>
<!-- End Title -->
<!-- Nav -->
<div class="text-center">
<ul class="nav nav-segment nav-pills scrollbar-horizontal mb-7" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="pills-one-code-features-tab" data-toggle="pill" href="#pills-one-code-features" role="tab" aria-controls="pills-one-code-features" aria-selected="true">App Marketplace</a>
</li>
<li class="nav-item">
<a class="nav-link" id="pills-two-code-features-tab" data-toggle="pill" href="#pills-two-code-features" role="tab" aria-controls="pills-two-code-features" aria-selected="false">Course</a>
</li>
<li class="nav-item">
<a class="nav-link" id="pills-three-code-features-tab" data-toggle="pill" href="#pills-three-code-features" role="tab" aria-controls="pills-three-code-features" aria-selected="false">Account Dashboard</a>
</li>
</ul>
</div>
<!-- End Nav -->
<!-- Tab Content -->
<div class="tab-content pr-lg-4">
<div class="tab-pane fade active show" id="pills-one-code-features" role="tabpanel" aria-labelledby="pills-one-code-features-tab">
<!-- Device Mockup -->
<div class="device-wrapper">
<div class="device">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/components/macbook.svg" alt="Image Description">
<img class="device-macbook-screen" src="https://htmlstream.com/front/assets/img/1618x1010/img2.jpg" alt="Image Description">
</div>
<div class="device device-iphone-x">
<img class="device-iphone-x-frame" src="https://htmlstream.com/front/assets/svg/components/iphone-x.svg" alt="Image Description">
<img class="device-iphone-x-screen" src="https://htmlstream.com/front/assets/img/407x867/img2.jpg" alt="Image Description">
</div>
</div>
<!-- End Device Mockup -->
</div>
<div class="tab-pane fade" id="pills-two-code-features" role="tabpanel" aria-labelledby="pills-two-code-features-tab">
<!-- Device Mockup -->
<div class="device-wrapper">
<div class="device">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/components/macbook.svg" alt="Image Description">
<img class="device-macbook-screen" src="https://htmlstream.com/front/assets/img/1618x1010/img1.jpg" alt="Image Description">
</div>
<div class="device device-iphone-x">
<img class="device-iphone-x-frame" src="https://htmlstream.com/front/assets/svg/components/iphone-x.svg" alt="Image Description">
<img class="device-iphone-x-screen" src="https://htmlstream.com/front/assets/img/407x867/img4.jpg" alt="Image Description">
</div>
</div>
<!-- End Device Mockup -->
</div>
<div class="tab-pane fade" id="pills-three-code-features" role="tabpanel" aria-labelledby="pills-three-code-features-tab">
<!-- Device Mockup -->
<div class="device-wrapper">
<div class="device">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/components/macbook.svg" alt="Image Description">
<img class="device-macbook-screen" src="https://htmlstream.com/front/assets/img/1618x1010/img3.jpg" alt="Image Description">
</div>
<div class="device device-iphone-x">
<img class="device-iphone-x-frame" src="https://htmlstream.com/front/assets/svg/components/iphone-x.svg" alt="Image Description">
<img class="device-iphone-x-screen" src="https://htmlstream.com/front/assets/img/407x867/img3.jpg" alt="Image Description">
</div>
</div>
<!-- End Device Mockup -->
</div>
</div>
<!-- End Tab Content -->
</div>
<!-- End Features Section -->
<!-- Stories Section -->
<div class="bg-dark">
<div class="container space-top-2">
<div class="row justify-content-md-between mb-6">
<div class="col-md-6 col-lg-5 mb-3 mb-md-0">
<h2 class="text-white font-weight-normal">Subscribe to get the latest from Front</h2>
</div>
<!-- Form -->
<div class="col-md-6">
<form class="js-validate mb-2" novalidate="novalidate">
<label class="sr-only" for="signupSrEmail">Email</label>
<div class="input-group">
<input type="email" class="form-control" name="email" id="signupSrEmail" placeholder="Your email address" aria-label="Your email address" required="">
<div class="input-group-append">
<button type="submit" class="btn btn-block btn-primary">Subscribe</button>
</div>
</div>
</form>
<!-- End Form -->
<p class="small text-white-70">You can unsubscribe at any time.</p>
</div>
</div>
<hr class="opacity-xs my-0">
</div>
</div>
<!-- End Stories Section -->
</main>
<!-- ========== END MAIN CONTENT ========== -->
<!-- ========== FOOTER ========== -->
<footer class="bg-dark">
<div class="container">
<div class="space-top-2 space-bottom-1 space-bottom-lg-2">
<div class="row justify-content-lg-between">
<div class="col-lg-3 ml-lg-auto mb-5 mb-lg-0">
<!-- Logo -->
<div class="mb-4">
<a href="index.html" aria-label="Front">
<img class="brand" src="https://htmlstream.com/front/assets/svg/logos/logo-white.svg" alt="Logo">
</a>
</div>
<!-- End Logo -->
<!-- Nav Link -->
<ul class="nav nav-sm nav-x-0 nav-white flex-column">
<li class="nav-item">
<a class="nav-link media" href="javascript:;">
<span class="media">
<span class="fas fa-location-arrow mt-1 mr-2"></span>
<span class="media-body">
153 Williamson Plaza, Maggieberg
</span>
</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link media" href="tel:1-062-109-9222">
<span class="media">
<span class="fas fa-phone-alt mt-1 mr-2"></span>
<span class="media-body">
+1 (062) 109-9222
</span>
</span>
</a>
</li>
</ul>
<!-- End Nav Link -->
</div>
<div class="col-6 col-md-3 col-lg mb-5 mb-lg-0">
<h5 class="text-white">Company</h5>
<!-- Nav Link -->
<ul class="nav nav-sm nav-x-0 nav-white flex-column">
<li class="nav-item"><a class="nav-link" href="#">About</a></li>
<li class="nav-item"><a class="nav-link" href="#">Careers <span class="badge badge-primary ml-1">We're hiring</span></a></li>
<li class="nav-item"><a class="nav-link" href="#">Blog</a></li>
<li class="nav-item"><a class="nav-link" href="#">Customers</a></li>
<li class="nav-item"><a class="nav-link" href="#">Hire us</a></li>
</ul>
<!-- End Nav Link -->
</div>
<div class="col-6 col-md-3 col-lg mb-5 mb-lg-0">
<h5 class="text-white">Features</h5>
<!-- Nav Link -->
<ul class="nav nav-sm nav-x-0 nav-white flex-column">
<li class="nav-item"><a class="nav-link" href="#">Press</a></li>
<li class="nav-item"><a class="nav-link" href="#">Release notes</a></li>
<li class="nav-item"><a class="nav-link" href="#">Integrations</a></li>
<li class="nav-item"><a class="nav-link" href="#">Pricing</a></li>
</ul>
<!-- End Nav Link -->
</div>
<div class="col-6 col-md-3 col-lg">
<h5 class="text-white">Documentation</h5>
<!-- Nav Link -->
<ul class="nav nav-sm nav-x-0 nav-white flex-column">
<li class="nav-item"><a class="nav-link" href="#">Support</a></li>
<li class="nav-item"><a class="nav-link" href="#">Docs</a></li>
<li class="nav-item"><a class="nav-link" href="#">Status</a></li>
<li class="nav-item"><a class="nav-link" href="#">API Reference</a></li>
<li class="nav-item"><a class="nav-link" href="#">Tech Requirements</a></li>
</ul>
<!-- End Nav Link -->
</div>
<div class="col-6 col-md-3 col-lg">
<h5 class="text-white">Resources</h5>
<!-- Nav Link -->
<ul class="nav nav-sm nav-x-0 nav-white flex-column">
<li class="nav-item">
<a class="nav-link" href="#">
<span class="media align-items-center">
<i class="fa fa-info-circle mr-2"></i>
<span class="media-body">Help</span>
</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<span class="media align-items-center">
<i class="fa fa-user-circle mr-2"></i>
<span class="media-body">Your Account</span>
</span>
</a>
</li>
</ul>
<!-- End Nav Link -->
</div>
</div>
</div>
<hr class="opacity-xs my-0">
<div class="space-1">
<div class="row align-items-md-center mb-7">
<div class="col-md-6 mb-4 mb-md-0">
<!-- Nav Link -->
<ul class="nav nav-sm nav-white nav-x-sm align-items-center">
<li class="nav-item">
<a class="nav-link" href="#">Privacy & Policy</a>