-
Notifications
You must be signed in to change notification settings - Fork 2
/
original_build.html
executable file
·4321 lines (4267 loc) · 249 KB
/
original_build.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
<!--
=========================================================
* Neumorphism UI - v1.0.0
=========================================================
* Product Page: https://themesberg.com/product/ui-kits/neumorphism-ui
* Copyright 2020 Themesberg MIT LICENSE (https://www.themesberg.com/licensing#mit)
* Coded by https://themesberg.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- Primary Meta Tags -->
<title>Neumorphism UI</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="title" content="Neumorphism UI">
<meta name="author" content="Themesberg">
<link rel="canonical" href="https://themesberg.com/product/ui-kits/neumorphism-ui/" />
<!-- Social tags -->
<meta name="keywords" content="neumorphism, neumorphism ui, neomorphism, neomorphism ui, neomorphism css, neumorphism css, neumorph, neumorphic, design system, login, form, table, tables, card, cards, navbar, modal, icons, icons, map, chat, carousel, menu, datepicker, gallery, slider, date, social, dropdown, search, tab, nav, footer, date picker, forms, tabs, time, button, select, input, timeline, cart, about us, account, log in, blog, profile, portfolio, landing page, ecommerce, shop, landing, register, app, contact, one page, sign up, signup, store, bootstrap 4, bootstrap4, dashboard, bootstrap 4 dashboard, bootstrap 4 design, bootstrap 4 system, bootstrap 4, bootstrap 4 uit kit, bootstrap 4 kit, themesberg, html kit, html css template, web template, bootstrap, bootstrap 4, css3 template, frontend, responsive bootstrap template, bootstrap ui kit, responsive ui kit">
<meta name="description" content="Start developing neumorphic web applications and pages using Neumorphism UI. It features over 100 individual components and 5 example pages.">
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="Neumorphism UI by Themesberg">
<meta itemprop="description" content="Start developing neumorphic web applications and pages using Neumorphism UI. It features over 100 individual components and 5 example pages.">
<meta itemprop="image" content="https://themesberg.s3.us-east-2.amazonaws.com/public/products/neumorphism-ui/neumorphism-thumbnail.jpg">
<!-- Twitter Card data -->
<meta name="twitter:card" content="product">
<meta name="twitter:site" content="@themesberg">
<meta name="twitter:title" content="Neumorphism UI by Themesberg">
<meta name="twitter:description" content="Start developing neumorphic web applications and pages using Neumorphism UI. It features over 100 individual components and 5 example pages.">
<meta name="twitter:creator" content="@themesberg">
<meta name="twitter:image" content="https://themesberg.s3.us-east-2.amazonaws.com/public/products/neumorphism-ui/neumorphism-thumbnail.jpg">
<!-- Open Graph data -->
<meta property="fb:app_id" content="214738555737136">
<meta property="og:title" content="Neumorphism UI by Themesberg" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://demo.themesberg.com/neumorphism-ui/" />
<meta property="og:image" content="https://themesberg.s3.us-east-2.amazonaws.com/public/products/neumorphism-ui/neumorphism-thumbnail.jpg"/>
<meta property="og:description" content="Start developing neumorphic web applications and pages using Neumorphism UI. It features over 100 individual components and 5 example pages." />
<meta property="og:site_name" content="Themesberg" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="120x120" href="./assets/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/img/favicon/favicon-16x16.png">
<link rel="manifest" href="./assets/img/favicon/site.webmanifest">
<link rel="mask-icon" href="./assets/img/favicon/safari-pinned-tab.svg" color="#ffffff">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<!-- Fontawesome -->
<link type="text/css" href="./vendor/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet">
<!-- Pixel CSS -->
<link type="text/css" href="./css/neumorphism.css" rel="stylesheet">
<!-- NOTICE: You can use the _analytics.html partial to include production code specific code & trackers -->
</head>
<body>
<header class="header-global">
<nav id="navbar-main" aria-label="Primary navigation" class="navbar navbar-main navbar-expand-lg navbar-theme-primary headroom navbar-light navbar-transparent navbar-theme-primary">
<div class="container position-relative">
<a class="navbar-brand shadow-soft py-2 px-3 rounded border border-light mr-lg-4" href="./index.html">
<img class="navbar-brand-dark" src="./assets/img/brand/dark.svg" alt="Logo light">
<img class="navbar-brand-light" src="./assets/img/brand/dark.svg" alt="Logo dark">
</a>
<div class="navbar-collapse collapse" id="navbar_global">
<div class="navbar-collapse-header">
<div class="row">
<div class="col-6 collapse-brand">
<a href="./index.html" class="navbar-brand shadow-soft py-2 px-3 rounded border border-light">
<img src="./assets/img/brand/dark.svg" alt="Themesberg logo">
</a>
</div>
<div class="col-6 collapse-close">
<a href="#navbar_global" class="fas fa-times" data-toggle="collapse" data-target="#navbar_global" aria-controls="navbar_global" aria-expanded="false" title="close" aria-label="Toggle navigation"></a>
</div>
</div>
</div>
<ul class="navbar-nav navbar-nav-hover align-items-lg-center">
<li class="nav-item dropdown">
<a href="#" class="nav-link" data-toggle="dropdown" >
<span class="nav-link-inner-text">Pages</span>
<span class="fas fa-angle-down nav-link-arrow ml-2"></span>
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="./html/pages/about.html">About</a></li>
<li><a class="dropdown-item" href="./html/pages/pricing.html">Pricing</a></li>
<li><a class="dropdown-item" href="./html/pages/contact.html">Contact</a></li>
<li><a class="dropdown-item" href="./html/pages/sign-in.html">Sign in</a></li>
<li><a class="dropdown-item" href="./html/pages/sign-up.html">Sign up</a></li>
</ul>
</li>
<li class="nav-item dropdown mega-dropdown">
<a href="#" class="nav-link" data-toggle="dropdown" >
<span class="nav-link-inner-text">Components</span>
<span class="fas fa-angle-down nav-link-arrow ml-2"></span>
</a>
<div class="dropdown-menu">
<div class="row">
<div class="col-lg-6 inside-bg d-none d-lg-block">
<div class="justify-content-center bg-primary text-white">
<div class="px-6 pb-5 pt-3">
<img src="./assets/img/megamenu-image.jpg" alt="Pixel Components">
</div>
<div class="z-2 pb-4 text-center">
<a href="./html/components/all.html" class="btn btn-primary mb-2 mb-sm-0 mr-3 text-secondary">
<span class="mr-1"><span class="fas fa-th-large"></span></span>
All components
</a>
<a href="https://themesberg.com/docs/neumorphism-ui/components/alerts" target="_blank" class="btn btn-primary mb-2 mb-sm-0">
<span class="mr-1"><span class="fas fa-book"></span></span>
Docs v1.0
</a>
</div>
</div>
</div>
<div class="col pl-0">
<ul class="list-style-none">
<li><a class="dropdown-item" href="./html/components/accordions.html">Accordions</a></li>
<li><a class="dropdown-item" href="./html/components/alerts.html">Alerts</a></li>
<li><a class="dropdown-item" href="./html/components/badges.html">Badges</a></li>
<li><a class="dropdown-item" href="./html/components/bootstrap-carousels.html">Bootstrap Carousels</a></li>
<li><a class="dropdown-item" href="./html/components/breadcrumbs.html">Breadcrumbs</a></li>
<li><a class="dropdown-item" href="./html/components/buttons.html">Buttons</a></li>
<li><a class="dropdown-item d-flex align-items-center justify-content-between" href="https://themesberg.com/docs/neumorphism-ui/plugins/jquery-counters/" target="_blank">Counters <span class="badge badge-dark ml-3">Pro</span></a></li>
<li><a class="dropdown-item" href="./html/components/cards.html">Cards</a></li>
<li><a class="dropdown-item d-flex align-items-center justify-content-between" href="https://themesberg.com/docs/neumorphism-ui/components/e-commerce/" target="_blank">E-commerce <span class="badge badge-dark ml-3">Pro</span></a></li>
</ul>
</div>
<div class="col pl-0">
<ul class="list-style-none">
<li><a class="dropdown-item" href="./html/components/forms.html">Forms</a></li>
<li><a class="dropdown-item d-flex align-items-center justify-content-between" href="https://themesberg.com/docs/neumorphism-ui/components/icon-boxes/" target="_blank">Icon Boxes <span class="badge badge-dark ml-3">Pro</span></a></li>
<li><a class="dropdown-item" href="./html/components/modals.html">Modals</a></li>
<li><a class="dropdown-item" href="./html/components/navs.html">Navs</a></li>
<li><a class="dropdown-item d-flex align-items-center justify-content-between" href="https://themesberg.com/docs/neumorphism-ui/plugins/owl-carousel/" target="_blank">Owl Carousels <span class="badge badge-dark ml-3">Pro</span></a></li>
<li><a class="dropdown-item" href="./html/components/pagination.html">Pagination</a></li>
<li><a class="dropdown-item" href="./html/components/popovers.html">Popovers</a></li>
<li><a class="dropdown-item" href="./html/components/progress-bars.html">Progress Bars</a></li>
</ul>
</div>
<div class="col pl-0">
<ul class="list-style-none">
<li><a class="dropdown-item d-flex align-items-center justify-content-between" href="https://themesberg.com/docs/neumorphism-ui/components/icon-boxes/#steps" target="_blank">Steps <span class="badge badge-dark ml-3">Pro</span></a></li>
<li><a class="dropdown-item" href="./html/components/tables.html">Tables</a></li>
<li><a class="dropdown-item" href="./html/components/tabs.html">Tabs</a> </li>
<li><a class="dropdown-item" href="./html/components/toasts.html">Toasts</a> </li>
<li><a class="dropdown-item d-flex align-items-center justify-content-between" href="https://themesberg.com/docs/neumorphism-ui/components/timelines/" target="_blank">Timelines <span class="badge badge-dark ml-3">Pro</span></a></li>
<li><a class="dropdown-item" href="./html/components/tooltips.html">Tooltips</a></li>
<li><a class="dropdown-item" href="./html/components/typography.html">Typography</a></li>
<li><a class="dropdown-item d-flex align-items-center justify-content-between" href="https://demo.themesberg.com/neumorphism-ui-pro/html/components/widgets.html" target="_blank">Widgets <span class="badge badge-dark ml-3">Pro</span></a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link" data-toggle="dropdown" >
<span class="nav-link-inner-text">Support</span>
<span class="fas fa-angle-down nav-link-arrow ml-2"></span>
</a>
<div class="dropdown-menu dropdown-menu-lg">
<div class="col-auto px-0" data-dropdown-content>
<div class="list-group list-group-flush">
<a href="https://themesberg.com/docs/neumorphism-ui/getting-started/quick-start/" target="_blank" class="list-group-item list-group-item-action d-flex align-items-center p-0 py-3 px-lg-4">
<span class="icon icon-sm icon-secondary"><span class="fas fa-file-alt"></span></span>
<div class="ml-4">
<span class="text-dark d-block">Documentation<span class="badge badge-sm badge-secondary ml-2">v1.0</span></span>
<span class="small">Examples and guides</span>
</div>
</a>
<a href="https://github.com/themesberg/neumorphism-ui/issues" target="_blank" class="list-group-item list-group-item-action d-flex align-items-center p-0 py-3 px-lg-4">
<span class="icon icon-sm icon-secondary"><span class="fas fa-microphone-alt"></span></span>
<div class="ml-4">
<span class="text-dark d-block">Support</span>
<span class="small">Looking for answers? Ask us!</span>
</div>
</a>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="d-flex align-items-center">
<a href="https://themesberg.com/product/ui-kits/neumorphism-ui-pro" target="_blank" class="btn btn-primary text-secondary d-none d-md-inline-block mr-3"><i class="far fa-paper-plane mr-2"></i> Upgrade to PRO</a>
<a href="https://themesberg.com/docs/neumorphism-ui/getting-started/quick-start/" target="_blank" class="btn btn-primary"><i class="fas fa-book"></i> Docs v1.0</a>
<button class="navbar-toggler ml-2" type="button" data-toggle="collapse" data-target="#navbar_global" aria-controls="navbar_global" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
</nav>
</header>
<main>
<!-- Hero -->
<section class="section section bg-soft pb-5 overflow-hidden z-2">
<div class="container z-2">
<div class="row justify-content-center text-center pt-6">
<div class="col-lg-8 col-xl-8">
<h1 class="display-2 mb-3">Neumorphism UI</h1>
<p class="lead px-md-6 mb-5">Neumorphism inspired <strong>User Interface Kit</strong> that will help you prototype and design beautiful, creative and modern websites.</p>
<div class="d-flex flex-column flex-wrap flex-md-row justify-content-md-center mb-5">
<a href="https://themesberg.com/product/ui-kits/neumorphism-ui" target="_blank" class="btn btn-primary mb-3 mb-lg-0 mr-3"><i class="fas fa-cloud-download-alt mr-2"></i> Download</a>
<div class="mt-2">
<a class="github-button" href="https://github.com/themesberg/neumorphism-ui" data-color-scheme="no-preference: dark; light: light; dark: light;" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star themesberg/neumorphism-ui on GitHub">Star</a>
</div>
</div>
<a href="https://themesberg.com" target="_blank" class="d-flex align-items-center justify-content-center flex-column">
<img src="./assets/img/themesberg.svg" height="25" class="mb-3" alt="Themesberg Logo">
<span class="text-muted font-small">A Themesberg production</span>
</a>
</div>
</div>
</div>
</section>
<section class="section section-lg">
<div class="container">
<div class="row">
<div class="col-12 col-md-4">
<!-- Icon box -->
<div class="icon-box text-center mb-5 mb-md-0">
<div class="icon icon-shape icon-lg bg-soft shadow-soft border border-light rounded-circle mb-3">
<span class="fas fa-box-open"></span>
</div>
<h2 class="h5 my-3">Over 200 components</h2>
<p class="px-lg-4">Beatifully crafted and neumorphism inspired elements</p>
</div>
<!-- End of Icon box -->
</div>
<div class="col-12 col-md-4 mb-5 mb-md-0">
<!-- Icon box -->
<div class="icon-box text-center">
<div class="icon icon-shape icon-lg bg-soft shadow-soft border border-light rounded-circle mb-3">
<span class="fas fa-pager"></span>
</div>
<h2 class="h5 my-3">10+ sections</h2>
<p class="px-lg-4">Navigation bars, pricing cards, footers and many more sections to enhance page variety</p>
</div>
<!-- End of Icon box -->
</div>
<div class="col-12 col-md-4 mb-5 mb-md-0">
<!-- Icon box -->
<div class="icon-box text-center">
<div class="icon icon-shape icon-lg bg-soft shadow-soft border border-light rounded-circle mb-3">
<span class="far fa-file-alt"></span>
</div>
<h2 class="h5 my-3">5 example pages</h2>
<p class="px-lg-4">We took the time to create a few example pages to show you how neumorphic pages can look like</p>
</div>
<!-- End of Icon box -->
</div>
</div>
</div>
</section>
<div class="section bg-primary pt-0 section-lg">
<div class="container">
<!-- Title -->
<div class="row">
<div class="col text-center">
<div class="mb-5">
<span class="h5 text-center">Default Accordion</span>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8">
<!--Accordion-->
<div class="accordion shadow-soft rounded" id="accordionExample1">
<div class="card card-sm card-body bg-primary border-light mb-0">
<a href="#panel-1" data-target="#panel-1" class="accordion-panel-header" data-toggle="collapse" role="button" aria-expanded="false" aria-controls="panel-1">
<span class="h6 mb-0 font-weight-bold">Our Company</span>
<span class="icon"><span class="fas fa-plus"></span></span>
</a>
<div class="collapse" id="panel-1">
<div class="pt-3">
<p class="mb-0">
At Themesberg, our mission has always been focused on bringing openness and transparency to the design process. We've always believed that by providing a space where designers can share ongoing work not only empowers them to make better products, it also
helps them grow. We're proud to be a part of creating a more open culture and to continue building a product that supports this vision.
</p>
</div>
</div>
</div>
<div class="card card-sm card-body bg-primary border-light mb-0">
<a href="#panel-2" data-target="#panel-2" class="accordion-panel-header" data-toggle="collapse" role="button" aria-expanded="false" aria-controls="panel-1">
<span class="h6 mb-0 font-weight-bold">Neumorphism Components</span>
<span class="icon"><span class="fas fa-plus"></span></span>
</a>
<div class="collapse" id="panel-2">
<div class="pt-3">
<p class="mb-0">
At Themesberg, our mission has always been focused on bringing openness and transparency to the design process. We've always believed that by providing a space where designers can share ongoing work not only empowers them to make better products, it also
helps them grow. We're proud to be a part of creating a more open culture and to continue building a product that supports this vision. </p>
</div>
</div>
</div>
<div class="card card-sm card-body bg-primary border-light">
<a href="#panel-3" data-target="#panel-3" class="accordion-panel-header" data-toggle="collapse" role="button" aria-expanded="false" aria-controls="panel-1">
<span class="h6 mb-0 font-weight-bold">Licenses</span>
<span class="icon"><span class="fas fa-plus"></span></span>
</a>
<div class="collapse" id="panel-3">
<div class="pt-3">
<p class="mb-0">
At Themesberg, our mission has always been focused on bringing openness and transparency to the design process. We've always believed that by providing a space where designers can share ongoing work not only empowers them to make better products, it also
helps them grow. We're proud to be a part of creating a more open culture and to continue building a product that supports this vision. </p>
</div>
</div>
</div>
</div>
<!--End of Accordion-->
</div>
</div>
<!-- Title -->
<div class="row">
<div class="col text-center">
<div class="my-5">
<span class="h5 text-center">Accordion with icons</span>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8">
<!--Accordion-->
<div class="accordion shadow-soft rounded">
<div class="card card-sm card-body bg-primary border-light mb-0">
<a href="#panel-4" data-target="#panel-4" class="accordion-panel-header" data-toggle="collapse" role="button" aria-expanded="false" aria-controls="panel-1">
<span class="icon-title h6 mb-0 font-weight-bold"><span class="fab fa-leanpub"></span>Our
Company</span>
<span class="icon"><span class="fas fa-plus"></span></span>
</a>
<div class="collapse" id="panel-4">
<div class="pt-3">
<p class="mb-0">
At Themesberg, our mission has always been focused on bringing openness and transparency to the design process. We've always believed that by providing a space where designers can share ongoing work not only empowers them to make better products, it also
helps them grow. We're proud to be a part of creating a more open culture and to continue building a product that supports this vision.
</p>
</div>
</div>
</div>
<div class="card card-sm card-body bg-primary border-light mb-0">
<a href="#panel-5" data-target="#panel-5" class="accordion-panel-header" data-toggle="collapse" role="button" aria-expanded="false" aria-controls="panel-1">
<span class="icon-title h6 mb-0 font-weight-bold"><span class="fas fa-box-open"></span>Pixel
Components</span>
<span class="icon"><span class="fas fa-plus"></span></span>
</a>
<div class="collapse" id="panel-5">
<div class="pt-3">
<p class="mb-0">
At Themesberg, our mission has always been focused on bringing openness and transparency to the design process. We've always believed that by providing a space where designers can share ongoing work not only empowers them to make better products, it also
helps them grow. We're proud to be a part of creating a more open culture and to continue building a product that supports this vision. </p>
</div>
</div>
</div>
<div class="card card-sm card-body bg-primary border-light mb-0">
<a href="#panel-6" data-target="#panel-6" class="accordion-panel-header" data-toggle="collapse" role="button" aria-expanded="false" aria-controls="panel-1">
<span class="icon-title h6 mb-0 font-weight-bold"><span class="fas fa-donate"></span>Licenses</span>
<span class="icon"><span class="fas fa-plus"></span></span>
</a>
<div class="collapse" id="panel-6">
<div class="pt-3">
<p class="mb-0">
At Themesberg, our mission has always been focused on bringing openness and transparency to the design process. We've always believed that by providing a space where designers can share ongoing work not only empowers them to make better products, it also
helps them grow. We're proud to be a part of creating a more open culture and to continue building a product that supports this vision. </p>
</div>
</div>
</div>
</div>
<!--End of Accordion-->
</div>
</div>
</div>
</div>
<div class="section bg-primary pt-0 section-lg">
<div class="container">
<!-- Title -->
<div class="row">
<div class="col text-center">
<div class="mb-5">
<span class="h5 text-center">Default Alerts</span>
</div>
</div>
</div>
<!-- End of title-->
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<div class="alert alert-secondary shadow-soft" role="alert">
<span class="alert-inner--text">This is a secondary alert with <a href="#" class="alert-link">an
example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-success shadow-soft" role="alert">
<span class="alert-inner--text">This is a success alert with <a href="#" class="alert-link">an
example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-info shadow-soft" role="alert">
<span class="alert-inner--text">This is a info alert with <a href="#" class="alert-link">an
example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-danger shadow-soft" role="alert">
<span class="alert-inner--text">This is a danger alert with <a href="#" class="alert-link">an
example link</a>. Give it a click if you like.</span>
</div>
</div>
</div>
<!-- Title -->
<div class="row">
<div class="col text-center">
<div class="mt-6 mb-5">
<span class="h5 text-center">Dismissible Alerts with Icons</span>
</div>
</div>
</div>
<!-- End of Title -->
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<div class="alert alert-secondary alert-dismissible shadow-soft fade show" role="alert">
<span class="alert-inner--icon"><span class="fas fa-exclamation-circle"></span></span>
<span class="alert-inner--text"><strong>Warning!</strong> Better check yourself, you're not
looking too good.</span>
<button type="button" class="close text-dark" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-success alert-dismissible shadow-soft fade show" role="alert">
<span class="alert-inner--icon"><span class="far fa-thumbs-up"></span></span>
<span class="alert-inner--text"><strong>Well done!</strong> You successfully read this
important alert message.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-info alert-dismissible shadow-soft fade show" role="alert">
<span class="alert-inner--icon"><span class="far fa-bell"></span></span>
<span class="alert-inner--text"><strong>Heads up!</strong>This alert needs your attention,
but it's not super important.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-danger alert-dismissible shadow-soft fade show" role="alert">
<span class="alert-inner--icon"><span class="fas fa-fire"></span></span>
<span class="alert-inner--text"><strong>Oh snap!</strong> Change a few things up and try
submitting again.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
<!-- Title -->
<div class="row">
<div class="col text-center">
<div class="mt-6 mb-5">
<span class="h5 text-center">Alerts with additional content</span>
</div>
</div>
</div>
<!-- End of Title -->
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<div class="alert alert-secondary shadow-soft mb-4 mb-lg-5" role="alert">
<span class="alert-inner--icon icon-lg"><span class="fas fa-exclamation-circle"></span></span>
<span class="alert-heading">Warning!</span>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
<div class="alert alert-success shadow-soft mb-4 mb-lg-5" role="alert">
<span class="alert-inner--icon icon-lg"><span class="far fa-thumbs-up"></span></span>
<span class="alert-heading">Well done!</span>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
<div class="alert alert-info shadow-soft mb-4 mb-lg-5" role="alert">
<span class="alert-inner--icon icon-lg"><span class="far fa-bell"></span></span>
<span class="alert-heading">Heads up!</span>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
<div class="alert alert-danger shadow-soft mb-4 mb-lg-5" role="alert">
<span class="alert-inner--icon icon-lg"><span class="fas fa-fire"></span></span>
<span class="alert-heading">Danger!</span>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End of Section -->
<div class="section pt-4 pb-0">
<div class="container">
<div class="row">
<div class="col text-center">
<span class="h3">Inset Shadow</span>
</div>
</div>
</div>
</div>
<!-- Section -->
<div class="section section-lg">
<div class="container">
<!-- Title -->
<div class="row">
<div class="col text-center">
<div class="mb-5">
<span class="h5 text-center">Default Alerts</span>
</div>
</div>
</div>
<!-- End of Title -->
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<div class="alert alert-success shadow-inset" role="alert">
<span class="alert-inner--text">This is a success alert with <a href="#" class="alert-link">an
example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-secondary shadow-inset" role="alert">
<span class="alert-inner--text">This is a warning alert with <a href="#" class="alert-link">an
example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-info shadow-inset" role="alert">
<span class="alert-inner--text">This is a info alert with <a href="#" class="alert-link">an
example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-danger shadow-inset" role="alert">
<span class="alert-inner--text">This is a danger alert with <a href="#" class="alert-link">an
example link</a>. Give it a click if you like.</span>
</div>
</div>
</div>
<!-- Title -->
<div class="row">
<div class="col text-center">
<div class="mt-6 mb-5">
<span class="h5 text-center">Dismissible Alerts with Icons</span>
</div>
</div>
</div>
<!-- End of Title -->
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<div class="alert alert-success alert-dismissible shadow-inset fade show" role="alert">
<span class="alert-inner--icon"><span class="far fa-thumbs-up"></span></span>
<span class="alert-inner--text"><strong>Well done!</strong> You successfully read this
important alert message.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-secondary alert-dismissible shadow-inset fade show" role="alert">
<span class="alert-inner--icon"><span class="fas fa-exclamation-circle"></span></span>
<span class="alert-inner--text"><strong>Warning!</strong> Better check yourself, you're not
looking too good.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-info alert-dismissible shadow-inset fade show" role="alert">
<span class="alert-inner--icon"><span class="far fa-bell"></span></span>
<span class="alert-inner--text"><strong>Heads up!</strong>This alert needs your attention,
but it's not super important.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-danger alert-dismissible shadow-inset fade show" role="alert">
<span class="alert-inner--icon"><span class="fas fa-fire"></span></span>
<span class="alert-inner--text"><strong>Oh snap!</strong> Change a few things up and try
submitting again.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
<!-- Title -->
<div class="row">
<div class="col text-center">
<div class="mt-6 mb-5">
<span class="h5 text-center">Alerts with additional content</span>
</div>
</div>
</div>
<!-- End of Title -->
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<div class="alert alert-success shadow-inset" role="alert">
<span class="alert-inner--icon icon-lg"><span class="far fa-thumbs-up"></span></span>
<span class="alert-heading">Well done!</span>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
<div class="alert alert-secondary shadow-inset" role="alert">
<span class="alert-inner--icon icon-lg"><span class="fas fa-exclamation-circle"></span></span>
<span class="alert-heading">Warning!</span>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
<div class="alert alert-info shadow-inset" role="alert">
<span class="alert-inner--icon icon-lg"><span class="far fa-bell"></span></span>
<span class="alert-heading">Heads up!</span>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
<div class="alert alert-danger shadow-inset" role="alert">
<span class="alert-inner--icon icon-lg"><span class="fas fa-fire"></span></span>
<span class="alert-heading">Danger!</span>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End of Section -->
<!-- Section -->
<div class="section bg-primary pt-0 section-lg">
<div class="container">
<div class="row mb-6">
<div class="col-lg-6">
<div class="mb-4">
<span class="h6">Badges</span>
</div>
<span class="badge badge-dark text-uppercase">Dark</span>
<span class="badge badge-secondary text-uppercase">Secondary</span>
<span class="badge badge-success text-uppercase">Success</span>
<span class="badge badge-danger text-uppercase">Danger</span>
<span class="badge badge-info text-uppercase">Info</span>
</div>
<div class="col-lg-6">
<div class="mb-4">
<span class="h6">Link Badges</span>
</div>
<a href="#" class="badge badge-dark">Dark</a>
<a href="#" class="badge badge-secondary">Secondary</a>
<a href="#" class="badge badge-success">Success</a>
<a href="#" class="badge badge-danger">Danger</a>
<a href="#" class="badge badge-info">Info</a>
</div>
</div>
<div class="row mb-6">
<div class="col-lg-6">
<div class="mb-4">
<span>Notification Badges</span>
</div>
<button type="button" class="btn btn-primary">
Notifications <span class="badge badge-pill badge-success">5</span>
<span class="sr-only">unread messages</span>
</button>
</div>
<div class="col-lg-6">
<div class="mb-4">
<span>Choose your size</span>
</div>
<span class="badge badge-success text-uppercase">Badge</span>
<span class="badge badge-md badge-success text-uppercase">Badge md</span>
<span class="badge badge-lg badge-success text-uppercase">Badge lg</span>
</div>
</div>
</div>
</div>
<!-- End of Section -->
<div class="section bg-primary pt-0 section-lg">
<div class="container">
<!-- Title -->
<div class="row">
<div class="col text-center">
<h2 class="h5 mb-6">Blog Cards</h2>
</div>
</div>
<!-- End of title-->
<div class="row mb-5">
<div class="col-12 col-md-6 col-lg-4 mb-5">
<div class="card bg-primary border-light shadow-soft">
<img src="./assets/img/blog/blog-article-1.jpg" class="card-img-top rounded-top" alt="Themesberg office">
<div class="card-body">
<span class="h6 icon-tertiary small"><span class="fas fa-medal mr-2"></span>Awards</span>
<h3 class="h5 card-title mt-3">We partnered up with Google</h3>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary btn-sm">Learn More</a>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 mb-5">
<div class="card bg-primary border-light shadow-soft">
<div class="card-header p-3">
<img src="./assets/img/blog/blog-article-2.jpg" class="card-img-top rounded" alt="Designer desk">
</div>
<div class="card-body pt-2">
<div class="media d-flex align-items-center justify-content-between">
<div class="post-group">
<a href="#" data-toggle="tooltip" data-placement="top" title="" data-original-title="23k followers">
<img class="avatar-sm mr-2 img-fluid rounded-circle" src="./assets/img/team/profile-picture-2.jpg" alt="Jo portrait"> Jo J. Moore
</a>
</div>
<div class="d-flex align-items-center">
<span class="small"><span class="far fa-calendar-alt mr-2"></span>15 March 2020</span>
</div>
</div>
<h3 class="h5 card-title mt-4">We partnered up with Google</h3>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary btn-sm">Learn More</a>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 mb-5">
<div class="card bg-primary shadow-soft text-center border-light">
<div class="card-header">
<span class="card-text small"><span class="far fa-calendar-alt mr-2"></span>15 March 2020</span>
</div>
<div class="card-body">
<h3 class="h5 card-title">We partnered up with Google</h3>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<a href="#" class="btn btn-primary btn-sm">Learn More</a>
</div>
<div class="card-footer">
<a href="#" data-toggle="tooltip" data-placement="top" title="" data-original-title="23k followers">
<img class="avatar-sm mr-2 img-fluid rounded-circle" src="./assets/img/team/profile-picture-2.jpg" alt="Moore avatar"> Jo J. Moore
</a>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="card bg-primary shadow-inset border-light">
<div class="card-body p-5">
<h3 class="h4 card-title mb-3">We partnered up with Google</h3>
<span class="card-text small"><span class="far fa-calendar-alt mr-2"></span>15 March 2020</span>
<p class="card-text mt-4">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<div class="d-flex align-items-center">
<a href="#" class="btn btn-primary btn-sm mr-3">Learn More</a>
<a href="#" class="small"><span class="far fa-comments mr-2"></span>21</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="section section-lg pt-0">
<div class="container">
<!-- Title -->
<div class="row">
<div class="col text-center">
<h2 class="h5 mb-7">Profile Cards</h2>
</div>
</div>
<!-- End of title-->
<div class="row justify-content-between">
<div class="col-12 col-md-6 col-lg-4 mb-6 mb-md-5">
<!-- Profile Card -->
<div class="profile-card mb-5">
<div class="card bg-primary shadow-inset border-light text-center">
<div class="card-header">
<div class="profile-image bg-primary shadow-inset border border-light rounded mx-auto p-3 mt-n6">
<img src="./assets/img/team/profile-picture-4.jpg" class="card-img-top rounded" alt="Leos Portrait">
</div>
</div>
<div class="card-body pb-5">
<h3 class="h5 mb-2">Jose Leos</h3>
<span class="h6 font-weight-normal text-gray mb-3">Co-Founder</span>
<ul class="list-unstyled d-flex justify-content-center mt-3 mb-4">
<li>
<a href="#" target="_blank" aria-label="facebook social link" class="icon icon-xs icon-facebook mr-3">
<span class="fab fa-facebook-f"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="twitter social link" class="icon icon-xs icon-twitter mr-3">
<span class="fab fa-twitter"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="slack social link" class="icon icon-xs icon-slack mr-3">
<span class="fab fa-slack-hash"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="dribbble social link" class="icon icon-xs icon-dribbble mr-3">
<span class="fab fa-dribbble"></span>
</a>
</li>
</ul>
<a class="btn btn-sm btn-primary mr-3" href="#">
<span class="fas fa-user-plus mr-1"></span> Follow
</a>
<a class="btn btn-sm btn-primary" href="#">
Message
</a>
</div>
</div>
</div>
<!-- End of Profile Card -->
</div>
<div class="col-12 col-md-6 col-lg-4 mb-6 mb-md-5">
<!-- Profile Card -->
<div class="profile-card mb-5">
<div class="card bg-primary shadow-soft border-light">
<div class="profile-image bg-primary shadow-inset border border-light rounded p-3 ml-3 mt-n5">
<img src="./assets/img/team/profile-picture-3.jpg" class="card-img-top rounded" alt="Bonnie Avatar">
</div>
<div class="card-body">
<h3 class="h5 mb-2">Bonnie Green</h3>
<span class="h6 font-weight-normal text-gray mb-3">Web Designer</span>
<ul class="list-unstyled d-flex my-3">
<li>
<a href="#" target="_blank" aria-label="facebook social link" class="icon icon-xs icon-facebook mr-3">
<span class="fab fa-facebook-f"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="twitter social link" class="icon icon-xs icon-twitter mr-3">
<span class="fab fa-twitter"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="slack social link" class="icon icon-xs icon-slack mr-3">
<span class="fab fa-slack-hash"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="dribbble social link" class="icon icon-xs icon-dribbble mr-3">
<span class="fab fa-dribbble"></span>
</a>
</li>
</ul>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
<!-- End of Profile Card -->
</div>
<div class="col-12 col-md-6 col-lg-4 mb-4 mb-md-5">
<!-- Profile Card -->
<div class="profile-card mb-5">
<div class="card bg-primary shadow-soft border-light">
<div class="profile-image bg-primary shadow-inset border border-light rounded-circle p-3 ml-3 mt-n5">
<img src="./assets/img/team/profile-picture-1.jpg" class="card-img-top rounded-circle" alt="Christopher Avatar">
</div>
<div class="card-body">
<h3 class="h5 mb-2">Christopher Wood</h3>
<span class="h6 font-weight-normal text-gray mb-3">Marketing</span>
<ul class="list-unstyled d-flex my-3">
<li>
<a href="#" target="_blank" aria-label="facebook social link" class="icon icon-xs icon-facebook mr-3">
<span class="fab fa-facebook-f"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="twitter social link" class="icon icon-xs icon-twitter mr-3">
<span class="fab fa-twitter"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="slack social link" class="icon icon-xs icon-slack mr-3">
<span class="fab fa-slack-hash"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="dribbble social link" class="icon icon-xs icon-dribbble mr-3">
<span class="fab fa-dribbble"></span>
</a>
</li>
</ul>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
<!-- End of Profile Card -->
</div>
<div class="col-12 col-md-6 col-lg-4 mb-5 mb-md-0">
<!-- Profile Card -->
<div class="card bg-primary shadow-soft border-light">
<div class="card-header p-4">
<img src="./assets/img/team/profile-picture-4.jpg" class="card-img-top rounded" alt="Wood Portrait">
</div>
<div class="card-body pt-2">
<h3 class="h5 mb-2">Christopher Wood</h3>
<span class="h6 font-weight-normal text-gray mb-4">Co-Founder Themesberg</span>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<ul class="list-unstyled d-flex my-3">
<li>
<a href="#" target="_blank" aria-label="facebook social link" class="icon icon-xs icon-facebook mr-3">
<span class="fab fa-facebook-f"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="twitter social link" class="icon icon-xs icon-twitter mr-3">
<span class="fab fa-twitter"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="slack social link" class="icon icon-xs icon-slack mr-3">
<span class="fab fa-slack-hash"></span>
</a>
</li>
<li>
<a href="#" target="_blank" aria-label="dribbble social link" class="icon icon-xs icon-dribbble mr-3">
<span class="fab fa-dribbble"></span>
</a>
</li>
</ul>
</div>
</div>
<!-- End of Profile Card -->
</div>
</div>
</div>
</section>
<div class="section section-lg pt-0">
<div class="container">
<!-- Title -->
<div class="row">
<div class="col text-center">
<h2 class="h5 mb-7">Pricing Cards</h2>
</div>
</div>
<!-- End of title-->
<div class="row mb-5">
<div class="col-12 col-md-6 col-lg-4 mb-5 mb-lg-0">
<div class="card bg-primary shadow-soft border-light text-center py-4">
<!-- Header -->
<div class="card-header p-3">
<h3 class="text-gray mb-4">Basic</h3>
<span class="d-block">
<span class="display-1 font-weight-bold">
<span class="align-top font-medium">$</span>19
</span>
<span class="d-block text-gray font-small">/ month</span>
</span>
</div>
<!-- End Header -->
<!-- Content -->
<div class="card-body">
<ul class="list-unstyled mb-4">
<li class="list-item pb-3"><strong>1</strong> free domain</li>
<li class="list-item pb-3">Storage space: <strong>5GB</strong></li>
<li class="list-item pb-3"><strong>100k</strong> monthly visitors</li>
<li class="list-item pb-3">One-click staging site</li>
<li class="list-item pb-3">Search engine wizard </li>
<li class="list-item pb-3">Community support</li>
</ul>
<button type="button" class="btn btn-primary btn-block">Start
Starter</button>
</div>
<!-- End Content -->
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 mb-5 mb-lg-0">
<div class="card bg-primary shadow-soft border-light p-4">
<!-- Header -->
<div class="card-header border-bottom text-center">
<span class="d-block">
<span class="display-1 font-weight-bold">
<span class="align-top font-medium">$</span>19
</span>
<span class="text-gray font-small">/ month</span>
</span>
</div>
<!-- End Header -->
<!-- Content -->
<div class="card-body">
<p>Faster sites deliver better business results for your clients.</p>
<ul class="list-unstyled mb-4">
<li class="list-item pb-2"><strong>Full Support</strong> No</li>
<li class="list-item pb-2"><strong>Storage</strong> 50 GB</li>
<li class="list-item"><strong>Monthly Visitors</strong> 400k</li>
</ul>
<button type="button" class="btn btn-primary btn-block">
<span class="fas fa-cart-plus mr-3"></span>Add to Cart