-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
791 lines (783 loc) · 38.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Webpixels">
<title>Quick – Website UI Kit (FREE)</title>
<!-- Preloader -->
<style>
@keyframes hidePreloader {
0% {
width: 100%;
height: 100%;
}
100% {
width: 0;
height: 0;
}
}
body>div.preloader {
position: fixed;
background: white;
width: 100%;
height: 100%;
z-index: 1071;
opacity: 0;
transition: opacity .5s ease;
overflow: hidden;
pointer-events: none;
display: flex;
align-items: center;
justify-content: center;
}
body:not(.loaded)>div.preloader {
opacity: 1;
}
body:not(.loaded) {
overflow: hidden;
}
body.loaded>div.preloader {
animation: hidePreloader .5s linear .5s forwards;
}
</style>
<script>
window.addEventListener("load", function() {
setTimeout(function() {
document.querySelector('body').classList.add('loaded');
}, 300);
});
</script>
<!-- Favicon -->
<link rel="icon" href="assets/img/brand/favicon.png" type="image/png"><!-- Font Awesome -->
<link rel="stylesheet" href="assets/libs/@fortawesome/fontawesome-free/css/all.min.css">
<!-- Quick CSS -->
<link rel="stylesheet" href="assets/css/quick-website.css" id="stylesheet">
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="spinner-border text-primary" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div class="modal fade" tabindex="-1" role="dialog" id="modal-cookies" data-backdrop="false" aria-labelledby="modal-cookies" aria-hidden="true">
<div class="modal-dialog modal-dialog-aside left-4 right-4 bottom-4">
<div class="modal-content bg-dark-dark">
<div class="modal-body">
<!-- Text -->
<p class="text-sm text-white mb-3">
We use cookies so that our themes work for you. By using our website, you agree to our use of cookies.
</p>
<!-- Buttons -->
<a href="pages/utility/terms.html" class="btn btn-sm btn-white" target="_blank">Learn more</a>
<button type="button" class="btn btn-sm btn-primary mr-2" data-dismiss="modal">OK</button>
</div>
</div>
</div>
</div>
<!-- Go Pro -->
<a href="https://webpixels.io/themes/quick-website-ui-kit" class="btn btn-block btn-dark text-truncate rounded-0 py-2 d-none d-lg-block" style="z-index: 1000;" target="_blank">
<strong>This is a free demo.</strong> Click here to open the full version →
</a>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container">
<!-- Brand -->
<a class="navbar-brand" href="index.html">
<img alt="Image placeholder" src="assets/img/brand/dark.svg" id="navbar-logo">
</a>
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mt-4 mt-lg-0 ml-auto">
<li class="nav-item ">
<a class="nav-link" href="index.html">Overview</a>
</li>
<li class="nav-item dropdown dropdown-animate" data-toggle="hover">
<a class="nav-link" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Pages</a>
<div class="dropdown-menu dropdown-menu-single">
<a href="index.html" class="dropdown-item">Homepage</a>
<a href="about.html" class="dropdown-item">About us</a>
<a href="contact.html" class="dropdown-item">Contact</a>
<div class="dropdown-divider"></div>
<a href="login.html" class="dropdown-item">Login</a>
</div>
</li>
<li class="nav-item ">
<a class="nav-link" href="docs/index.html">Docs</a>
</li>
</ul>
<!-- Button -->
<a class="navbar-btn btn btn-sm btn-primary d-none d-lg-inline-block ml-3" href="https://github.com/webpixels/quick-website-ui-kit-demo/archive/master.zip">
Download Free
</a>
<!-- Mobile button -->
<div class="d-lg-none text-center">
<a href="https://webpixels.io/themes/quick-website-ui-kit" class="btn btn-block btn-sm btn-warning">See more details</a>
</div>
</div>
</div>
</nav>
<!-- Main content -->
<section class="slice py-7">
<div class="container">
<div class="row row-grid align-items-center">
<div class="col-12 col-md-5 col-lg-6 order-md-2 text-center">
<!-- Image -->
<figure class="w-100">
<img alt="Image placeholder" src="assets/img/svg/illustrations/illustration-3.svg" class="img-fluid mw-md-120">
</figure>
</div>
<div class="col-12 col-md-7 col-lg-6 order-md-1 pr-md-5">
<!-- Heading -->
<h1 class="display-4 text-center text-md-left mb-3">
It's time to amplify your <strong class="text-primary">online business</strong>
</h1>
<!-- Text -->
<p class="lead text-center text-md-left text-muted">
Build a beautiful, modern website with flexible Bootstrap components built from scratch.
</p>
<!-- Buttons -->
<div class="text-center text-md-left mt-5">
<a href="https://webpixels.io/themes/quick-free-bootstrap-theme" class="btn btn-primary btn-icon" target="_blank">
<span class="btn-inner--text">Get started</span>
<span class="btn-inner--icon"><i data-feather="chevron-right"></i></span>
</a>
<a href="https://webpixels.io/illustrations" class="btn btn-neutral btn-icon d-none d-lg-inline-block" target="_blank">See Illustrations</a>
</div>
</div>
</div>
</div>
</section>
<section class="slice slice-lg pt-lg-6 pb-0 pb-lg-6 bg-section-secondary">
<div class="container">
<!-- Title -->
<!-- Section title -->
<div class="row mb-5 justify-content-center text-center">
<div class="col-lg-6">
<span class="badge badge-soft-success badge-pill badge-lg">
Get started
</span>
<h2 class=" mt-4">Carefuly crafted components ready to use in your project</h2>
<div class="mt-2">
<p class="lead lh-180">Use Atomic Design to build components, sections and, then, pages.</p>
</div>
</div>
</div>
<!-- Card -->
<div class="row mt-5">
<div class="col-md-4">
<div class="card">
<div class="card-body pb-5">
<div class="pt-4 pb-5">
<img src="assets/img/svg/illustrations/illustration-5.svg" class="img-fluid img-center" style="height: 150px;" alt="Illustration" />
</div>
<h5 class="h4 lh-130 mb-3">Unleash you creativity</h5>
<p class="text-muted mb-0">Quick Website UI Kit (FREE) contains components and pages that are easy to customize and change.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body pb-5">
<div class="pt-4 pb-5">
<img src="assets/img/svg/illustrations/illustration-6.svg" class="img-fluid img-center" style="height: 150px;" alt="Illustration" />
</div>
<h5 class="h4 lh-130 mb-3">Get more results</h5>
<p class="text-muted mb-0">Quick Website UI Kit (FREE) contains components and pages that are easy to customize and change.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body pb-5">
<div class="pt-4 pb-5">
<img src="assets/img/svg/illustrations/illustration-7.svg" class="img-fluid img-center" style="height: 150px;" alt="Illustration" />
</div>
<h5 class="h4 lh-130 mb-3">Increase your audience</h5>
<p class="text-muted mb-0">Quick Website UI Kit (FREE) contains components and pages that are easy to customize and change.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="slice slice-lg">
<div class="container">
<div class="py-6">
<div class="row row-grid justify-content-between align-items-center">
<div class="col-lg-5 order-lg-2">
<h5 class="h3">Need a quick admin panel for your website?</h5>
<p class="lead my-4">
With Quick you get components and examples, including tons of variables that will help you customize this theme with ease.
</p>
<ul class="list-unstyled mb-0">
<li class="py-2">
<div class="d-flex align-items-center">
<div>
<div class="icon icon-shape bg-primary text-white icon-sm rounded-circle mr-3">
<i class="fas fa-file-invoice"></i>
</div>
</div>
<div>
<span class="h6 mb-0">Perfect for modern startups</span>
</div>
</div>
</li>
<li class="py-2">
<div class="d-flex align-items-center">
<div>
<div class="icon icon-shape bg-primary text-white icon-sm rounded-circle mr-3">
<i class="fas fa-store-alt"></i>
</div>
</div>
<div>
<span class="h6 mb-0">Ready to be customized</span>
</div>
</div>
</li>
</ul>
</div>
<div class="col-lg-6 order-lg-1">
<div class="card mb-0 mr-lg-5">
<div class="card-body p-2">
<img alt="Image placeholder" src="assets/img/theme/light/screen-1-1000x800.jpg" class="img-fluid shadow rounded">
</div>
</div>
</div>
</div>
</div>
<div class="py-6">
<div class="row row-grid justify-content-between align-items-center">
<div class="col-lg-5">
<h5 class="h3">A modern project management dashboard</h5>
<p class="lead my-4">
With Quick you get components and examples, including tons of variables that will help you customize this theme with ease.
</p>
<ul class="list-unstyled mb-0">
<li class="py-2">
<div class="d-flex align-items-center">
<div>
<div class="icon icon-shape bg-primary text-white icon-sm rounded-circle mr-3">
<i class="fas fa-file-invoice"></i>
</div>
</div>
<div>
<span class="h6 mb-0">Perfect for modern startups</span>
</div>
</div>
</li>
<li class="py-2">
<div class="d-flex align-items-center">
<div>
<div class="icon icon-shape bg-primary text-white icon-sm rounded-circle mr-3">
<i class="fas fa-store-alt"></i>
</div>
</div>
<div>
<span class="h6 mb-0">Ready to be customized</span>
</div>
</div>
</li>
<li class="py-2">
<div class="d-flex align-items-center">
<div>
<div class="icon icon-shape bg-primary text-white icon-sm rounded-circle mr-3">
<i class="fas fa-store-alt"></i>
</div>
</div>
<div>
<span class="h6 mb-0">Designed for every devices</span>
</div>
</div>
</li>
</ul>
</div>
<div class="col-lg-6">
<div class="card mb-0 ml-lg-5">
<div class="card-body p-2">
<img alt="Image placeholder" src="assets/img/theme/light/screen-2-1000x800.jpg" class="img-fluid shadow rounded">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="slice slice-lg bg-section-dark pt-5 pt-lg-8">
<!-- SVG separator -->
<div class="shape-container shape-line shape-position-top shape-orientation-inverse">
<svg width="2560px" height="100px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="none" x="0px" y="0px" viewBox="0 0 2560 100" style="enable-background:new 0 0 2560 100;" xml:space="preserve" class="">
<polygon points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<!-- Container -->
<div class="container position-relative zindex-100">
<div class="col">
<div class="row justify-content-center">
<div class="col-md-10 text-center">
<div class="mt-4 mb-6">
<h2 class="h1 text-white">
Are you ready to grow faster?
</h2>
<h4 class="text-white mt-3">Create your own experience</h4>
<!-- Play button -->
<a href="#" class="btn btn-primary btn-icon mt-4">Learn more</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="slice pt-0">
<div class="container position-relative zindex-100">
<div class="row">
<div class="col-xl-4 col-sm-6 mt-n7">
<div class="card">
<div class="d-flex p-5">
<div>
<span class="badge badge-warning badge-pill">New</span>
</div>
<div class="pl-4">
<h5 class="lh-130">Listen to the nature</h5>
<p class="text-muted mb-0">
Design made simple with a clean and smart HTML markup.
</p>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-sm-6 mt-sm-n7">
<div class="card">
<div class="d-flex p-5">
<div>
<span class="badge badge-success badge-pill">Tips</span>
</div>
<div class="pl-4">
<h5 class="lh-130">Rules not to follow</h5>
<p class="text-muted mb-0">
Design made simple with a clean and smart HTML markup.
</p>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-md-12 col-sm-6 mt-xl-n7">
<div class="card">
<div class="d-flex p-5">
<div>
<span class="badge badge-danger badge-pill">Update</span>
</div>
<div class="pl-3">
<h5 class="lh-130">Beware the water</h5>
<p class="text-muted mb-0">
Design made simple with a clean and smart HTML markup.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-4 col-sm-6">
<div class="card">
<div class="d-flex p-5">
<div>
<span class="badge badge-warning badge-pill">New</span>
</div>
<div class="pl-4">
<h5 class="lh-130">Listen to the nature</h5>
<p class="text-muted mb-0">
Design made simple with a clean and smart HTML markup.
</p>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-sm-6">
<div class="card">
<div class="d-flex p-5">
<div>
<span class="badge badge-success badge-pill">Tips</span>
</div>
<div class="pl-4">
<h5 class="lh-130">Rules not to follow</h5>
<p class="text-muted mb-0">
Design made simple with a clean and smart HTML markup.
</p>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-md-12 col-sm-6">
<div class="card">
<div class="d-flex p-5">
<div>
<span class="badge badge-danger badge-pill">Update</span>
</div>
<div class="pl-3">
<h5 class="lh-130">Beware the water</h5>
<p class="text-muted mb-0">
Design made simple with a clean and smart HTML markup.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="slice slice-lg">
<div class="container">
<div class="row">
<div class="col-lg-6">
<span class="badge badge-primary badge-pill">Key features</span>
<h5 class="lh-180 mt-4 mb-6">Quick is a premium HTML template that includes adaptable components and pages for various industries, plus new ones each month.</h5>
</div>
</div>
<!-- Features -->
<div class="row mx-lg-n4">
<!-- Features - Col 1 -->
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div class="icon icon-shape rounded-circle bg-warning text-white mr-4">
<i data-feather="check"></i>
</div>
</div>
<div>
<span class="h6">100% Responsive</span>
<p class="text-sm text-muted mb-0">
Built to be customized.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div class="icon icon-shape rounded-circle bg-primary text-white mr-4">
<i data-feather="check"></i>
</div>
</div>
<div>
<span class="h6">Based on Bootstrap 4</span>
<p class="text-sm text-muted mb-0">
Built to be customized.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div class="icon icon-shape rounded-circle bg-danger text-white mr-4">
<i data-feather="check"></i>
</div>
</div>
<div>
<span class="h6">Built with SASS</span>
<p class="text-sm text-muted mb-0">
Built to be customized.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div class="icon icon-shape rounded-circle bg-success text-white mr-4">
<i data-feather="check"></i>
</div>
</div>
<div>
<span class="h6">300+ components</span>
<p class="text-sm text-muted mb-0">
Built to be customized.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div class="icon icon-shape rounded-circle bg-info text-white mr-4">
<i data-feather="check"></i>
</div>
</div>
<div>
<span class="h6">23+ widgets</span>
<p class="text-sm text-muted mb-0">
Built to be customized.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div class="icon icon-shape rounded-circle bg-warning text-white mr-4">
<i data-feather="check"></i>
</div>
</div>
<div>
<span class="h6">Bootstrap Flexbox Grid</span>
<p class="text-sm text-muted mb-0">
Built to be customized.
</p>
</div>
</div>
</div>
</div>
<!-- Features - Col 3 -->
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div>
<div class="icon icon-shape rounded-circle bg-info text-white mr-4">
<i data-feather="check"></i>
</div>
</div>
</div>
<div>
<span class="h6">Animate CSS</span>
<p class="text-sm text-muted mb-0">
Built to be customized.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div>
<div class="icon icon-shape rounded-circle bg-danger text-white mr-4">
<i data-feather="check"></i>
</div>
</div>
</div>
<div>
<span class="h6">Integrated plugins</span>
<p class="text-sm text-muted mb-0">
Built to be customized.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div>
<div class="icon icon-shape rounded-circle bg-primary text-white mr-4">
<i data-feather="check"></i>
</div>
</div>
</div>
<div>
<span class="h6">Smart HTML markup</span>
<p class="text-sm text-muted mb-0">
Built to be customized.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="slice slice-lg bg-section-secondary">
<div class="container text-center">
<div class="row justify-content-center mb-6">
<div class="col-lg-8">
<!-- Title -->
<h2 class="h1 strong-600">
Complete features at your hand
</h2>
<!-- Text -->
<p class="text-muted">
Thousands of developers around the world have already made Quick the main tool for building websites.
</p>
</div>
</div>
<!-- Pricing -->
<div class="row justify-content-center">
<div class="col-lg-4 col-md">
<div class="card card-pricing text-center px-3 hover-scale-110">
<div class="card-header py-5 border-0 delimiter-bottom">
<div class="h1 text-center mb-0">$<span class="price font-weight-bolder">49</span></div>
<span class="h6 text-muted">Standard License</span>
</div>
<div class="card-body">
<ul class="list-unstyled text-sm mb-4">
<li class="py-2">1 end product</li>
<li class="py-2">Use for personal or a client</li>
<li class="py-2">Use in a free end product</li>
<li class="py-2">6 months technical support</li>
</ul>
<a href="#" class="btn btn-sm btn-warning hover-translate-y-n3 hover-shadow-lg mb-3">Purchase now</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md">
<div class="card card-pricing bg-dark text-center px-3 border-0 hover-scale-110">
<div class="card-header py-5 border-0 delimiter-bottom">
<div class="h1 text-white text-center mb-0">$<span class="price font-weight-bolder">590</span></div>
<span class="h6 text-white">Extended License</span>
</div>
<div class="card-body">
<ul class="list-unstyled text-white text-sm opacity-8 mb-4">
<li class="py-2">1 end product</li>
<li class="py-2">Use for personal or a client</li>
<li class="py-2">Use in a free end product</li>
<li class="py-2">Use in an end product that is <strong class="text-success text-underline--dashed">sold</strong></li>
<li class="py-2">6 months technical support</li>
</ul>
<a href="#" class="btn btn-sm btn-white hover-translate-y-n3 hover-shadow-lg mb-3">Purchase now</a>
</div>
</div>
</div>
</div>
<div class="mt-5 text-center">
<p class="mb-2">
Both pricings contains all 6 months free support. Need more?
</p>
<a href="#" class="text-primary text-underline--dashed">Contact us<i data-feather="arrow-right" class="ml-2"></i></a>
</div>
</div>
</section>
<footer class="position-relative" id="footer-main">
<div class="footer pt-lg-7 footer-dark bg-dark">
<!-- SVG shape -->
<div class="shape-container shape-line shape-position-top shape-orientation-inverse">
<svg width="2560px" height="100px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="none" x="0px" y="0px" viewBox="0 0 2560 100" style="enable-background:new 0 0 2560 100;" xml:space="preserve" class=" fill-section-secondary">
<polygon points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<!-- Footer -->
<div class="container pt-4">
<div class="row">
<div class="col-lg-4 mb-5 mb-lg-0">
<!-- Theme's logo -->
<a href="index.html">
<img alt="Image placeholder" src="assets/img/brand/light.svg" id="footer-logo">
</a>
<!-- Webpixels' mission -->
<p class="mt-4 text-sm opacity-8 pr-lg-4">Webpixels attempts to bring the best development experience to designers and developers by offering the tools needed for having a quick and solid start in most web projects.</p>
<!-- Social -->
<ul class="nav mt-4">
<li class="nav-item">
<a class="nav-link pl-0" href="https://dribbble.com/webpixels" target="_blank">
<i class="fab fa-dribbble"></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/webpixels" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.instagram.com/webpxs" target="_blank">
<i class="fab fa-instagram"></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.facebook.com/webpixels" target="_blank">
<i class="fab fa-facebook"></i>
</a>
</li>
</ul>
</div>
<div class="col-lg-2 col-6 col-sm-4 ml-lg-auto mb-5 mb-lg-0">
<h6 class="heading mb-3">Account</h6>
<ul class="list-unstyled">
<li><a href="#">Profile</a></li>
<li><a href="#">Settings</a></li>
<li><a href="#">Billing</a></li>
<li><a href="#">Notifications</a></li>
</ul>
</div>
<div class="col-lg-2 col-6 col-sm-4 mb-5 mb-lg-0">
<h6 class="heading mb-3">About</h6>
<ul class="list-unstyled">
<li><a href="#">Services</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Careers</a></li>
</ul>
</div>
<div class="col-lg-2 col-6 col-sm-4 mb-5 mb-lg-0">
<h6 class="heading mb-3">Company</h6>
<ul class="list-unstyled">
<li><a href="#">Community</a></li>
<li><a href="#">Help center</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
</div>
<hr class="divider divider-fade divider-dark my-4">
<div class="row align-items-center justify-content-md-between pb-4">
<div class="col-md-6">
<div class="copyright text-sm font-weight-bold text-center text-md-left">
© 2020 <a href="https://webpixels.io" class="font-weight-bold" target="_blank">Webpixels</a>. All rights reserved
</div>
</div>
<div class="col-md-6">
<ul class="nav justify-content-center justify-content-md-end mt-3 mt-md-0">
<li class="nav-item">
<a class="nav-link" href="#">
Terms
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
Privacy
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
Cookies
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<!-- Core JS -->
<script src="assets/libs/jquery/dist/jquery.min.js"></script>
<script src="assets/libs/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/libs/svg-injector/dist/svg-injector.min.js"></script>
<script src="assets/libs/feather-icons/dist/feather.min.js"></script>
<!-- Quick JS -->
<script src="assets/js/quick-website.js"></script>
<!-- Feather Icons -->
<script>
feather.replace({
'width': '1em',
'height': '1em'
})
</script>
</body>
</html>