-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocs.html
1068 lines (1014 loc) · 88.2 KB
/
docs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="images\favicon-16x16.png" type="image/x-icon">
<link rel="stylesheet" href="doc.css" />
<link rel="stylesheet" href="main.css" />
<title>Popcube UI</title>
</head>
<body>
<div class="main-container">
<div class="nav-container">
<nav class="nav-wrap">
<div class="nav-brand">
<h1 class="brand-logo">
<a href="index.html">PopCube <span style="color: #fc452e">Ui</span></a>
</h1>
</div>
<div>
<button class="hamburger" id="hamburger">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="nav-list-container ">
<ul class="nav-list margin-left-doc" id="nav-list">
<li><a href="index.html">HOME</a></li>
<li><a href="docs.html">DOCS</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</div>
<div class="version-wrapper">
<p class="small">
<span
><a
class="link"
href="https://github.com/DanishOnGit/New-component-library"
target="_blank"
title="Github repo"
><i class="fab fa-github"></i></a
></span>
V 1.0
</p>
</div>
</nav>
</div>
<div class="content-container">
<div class="sidebar">
<div class="sidebar_list-container">
<ul class="sidebar_list">
<a href="#getting-started-sec"><li>Installation</li></a>
<a href="#alerts-sec"><li>Alerts</li></a>
<a href="#avatars-sec"><li>Avatars</li></a>
<a href="#badges-sec"><li>Badges</li></a>
<a href="#buttons-sec"><li>Buttons</li></a>
<a href="#cards-sec"><li>Cards</li></a>
<a href="#grids-sec"><li>Grids</li></a>
<a href="#images-sec"><li>Images</li></a>
<a href="#inputs-sec"><li>Inputs</li></a>
<a href="#modals-sec"><li>Modals</li></a>
<a href="#navbars-sec"><li>Navigation</li></a>
<a href="#ratings-sec"><li>Ratings</li></a>
<a href="#toasts-sec"><li>Toasts</li></a>
<a href="#typography-sec"><li>Typography</li></a>
</ul>
</div>
</div>
<div class="main-section">
<section class="getting-started-sec" id="getting-started-sec">
<h1 class="display-5">Getting Started</h1>
<p>Using PopCube-Ui is simple. Just follow the procedure below.</p>
<br />
<h3>Link the Css file:</h3>
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%253Clink%2520rel%253D%2522stylesheet%2522%2520href%253D%2522https%253A%252F%252Fpopcube-ui.netlify.app%252Fmain.css%2522%253E"
frameborder="0"
></iframe>
<h3>Copy the code below in your javascript file.</h3>
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=const%2520myModal%253Ddocument.querySelector%28%2522.modal-wrapper%2522%29%253B%250Aconst%2520closeBtn%253Ddocument.querySelector%28%2522%2523closeMe%2522%29%253B%250Aconst%2520closeBtn2%253Ddocument.querySelector%28%2522%2523closeIt%2522%29%253B%250Aconst%2520modalLaunch%253Ddocument.getElementById%28%2522launchModal%2522%29%250A%250AmodalLaunch.addEventListener%28%2522click%2522%252C%28%29%253D%253EmyModal.style.display%253D%2522block%2522%29%253B%250AcloseBtn.addEventListener%28%2522click%2522%252C%28%29%253D%253EmyModal.style.display%253D%2522none%2522%29%253B%250AcloseBtn2.addEventListener%28%2522click%2522%252C%28%29%253D%253EmyModal.style.display%253D%2522none%2522%29%253B%250A%250A%252F%252F%2520For%2520Toasts%250Aconst%2520toastWrapper%253Ddocument.querySelectorAll%28%2522.toast-wrapper%2522%29%253B%250Aconst%2520toastClose%253Ddocument.querySelectorAll%28%2522.close-btn%2522%29%253B%250Aconst%2520showToastBtn%253Ddocument.getElementById%28%2522showToast%2522%29%253B%250Aconst%2520exampleToast%253Ddocument.getElementById%28%2522exampleToast%2522%29%253B%250A%250AshowToastBtn.addEventListener%28%2522click%2522%252C%28%29%253D%253EexampleToast.style.display%253D%2522block%2522%29%250A%250Afor%28let%2520i%253D0%253Bi%253CtoastClose.length%253Bi%252B%252B%29%250A%257B%250A%2520%2520%2520%2520toastClose%255Bi%255D.addEventListener%28%2522click%2522%252C%28%29%253D%253EtoastWrapper%255Bi%255D.style.display%253D%2522none%2522%29%250A%257D%250A%250A%252F%252F%2520For%2520Ratings%250Aconst%2520starRatings%253Ddocument.querySelectorAll%28%2522.star-rating-input%2522%29%253B%250AstarRatings.forEach%28%28star%252Cindex%29%253D%253E%257B%250A%2520%2520%2520%2520star.addEventListener%28%2522change%2522%252C%28%29%253D%253EcheckPreviousStars%28index%29%29%250A%257D%29%250Afunction%2520checkPreviousStars%28id%29%257B%250A%2520%2520%2520%2520if%28starRatings%255Bid%255D.checked%29%250A%2520%2520%2520%2520%257Bfor%28let%2520i%253Did-1%253Bi%253E%253D0%253Bi--%29%257B%250A%2520%2520%2520%2520%2520%2520%2520starRatings%255Bi%255D.checked%253Dtrue%250A%2520%2520%2520%2520%257D%257D%250A%2520%2520%2520%2520else%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520for%28let%2520j%253Did%252B1%253Bj%253CstarRatings.length%253Bj%252B%252B%29%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520starRatings%255Bj%255D.checked%253Dfalse%250A%2520%2520%2520%2520%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520%257D%250A%257D"
frameborder="0"
></iframe>
</section>
<br />
<hr />
<section class="alert-sec" id="alerts-sec">
<h1 class="display-5">Alerts</h1>
<p>
Provide contextual feedback messages for typical user actions!
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
You can have any length of text inside them. They also come with
an optional dismiss button.
</p>
</div>
<div class="alerts-collection">
<div class="error">
<p>
<i class="fas fa-exclamation"></i> There was an error
processing your request
</p>
</div>
<div class="success">
<p><i class="fas fa-check"></i> File upload successfull</p>
</div>
<div class="warning">
<p>
<i class="fas fa-exclamation"></i> Account about to expire
</p>
</div>
<div class="info">
<p>
<i class="fas fa-info"></i> You can download multiple images.
<span><i class="fas fa-times"></i></span>
</p>
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below and
you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%2509%2509%2509%253Cdiv%2520class%253D%2522error%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ci%2520class%253D%2522fas%2520fa-exclamation%2522%253E%253C%252Fi%253E%2520There%2520was%2520an%2520error%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520processing%2520your%2520request%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522success%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%253E%253Ci%2520class%253D%2522fas%2520fa-check%2522%253E%253C%252Fi%253E%2520File%2520upload%2520successfull%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522warning%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ci%2520class%253D%2522fas%2520fa-exclamation%2522%253E%253C%252Fi%253E%2520Account%2520about%2520to%2520expire%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522info%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ci%2520class%253D%2522fas%2520fa-info%2522%253E%253C%252Fi%253E%2520You%2520can%2520download%2520multiple%2520images.%2520%253Cspan%253E%253Ci%2520class%253D%2522fas%2520fa-%2509%2509%2509%2509%2509times%2522%253E%253C%252Fi%253E%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E"
frameborder="0"
></iframe>
</div>
</div>
</section>
<br />
<hr />
<section class="avatar-sec" id="avatars-sec">
<h1 class="display-5">Avatars</h1>
<p>
The Avatar component is used to represent a user, and displays the
profile picture, initials or fallback icon.
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
You get four sizes to choose from. Also, an optional badge can
be included to display if user is online/offline.
</p>
</div>
<div class="avatars-collection">
<div class="display-flex">
<div class="avatar-wrapper-small self-aligned">
<img
class="avatar-small"
src="images\mateo-avila-chinchilla-x_8oJhYU31k-unsplash.jpg"
alt="avatar"
/>
<div class="green-badge"></div>
</div>
<div class="avatar-wrapper-normal self-aligned">
<img
class="avatar-normal"
src="images\mateo-avila-chinchilla-x_8oJhYU31k-unsplash.jpg"
alt="avatar"
/>
<div class="red-badge"></div>
</div>
<div class="avatar-wrapper-medium self-aligned">
<img
class="avatar-medium"
src="images\mateo-avila-chinchilla-x_8oJhYU31k-unsplash.jpg"
alt="avatar"
/>
<div class="green-badge"></div>
</div>
<div class="avatar-wrapper-large self-aligned">
<img
class="avatar-large"
src="images\mateo-avila-chinchilla-x_8oJhYU31k-unsplash.jpg"
alt="avatar"
/>
<div class="green-badge"></div>
</div>
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below and
you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%2509%253Cdiv%2520class%253D%2522avatar-wrapper-small%2522%253E%250A%2520%2520%2520%2520%2520%2520%253Cimg%250A%2520%2520%2520%2520%2520%2520%2520%2520class%253D%2522avatar-small%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520src%253D%2522images%255Cshahin-khalaji-Ac5sm2yOLFc-unsplash.jpg%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520alt%253D%2522avatar%2522%250A%2520%2520%2520%2520%2520%2520%252F%253E%250A%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522green-badge%2522%253E%253C%252Fdiv%253E%250A%2520%2520%2520%2520%253C%252Fdiv%253E%250A%250A%2520%2520%2520%2520%253Cdiv%2520class%253D%2522avatar-wrapper-normal%2522%253E%250A%2520%2520%2520%2520%2520%2520%253Cimg%250A%2520%2520%2520%2520%2520%2520%2520%2520class%253D%2522avatar-normal%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520src%253D%2522images%255Cshahin-khalaji-Ac5sm2yOLFc-unsplash.jpg%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520alt%253D%2522avatar%2522%250A%2520%2520%2520%2520%2520%2520%252F%253E%250A%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522red-badge%2522%253E%253C%252Fdiv%253E%250A%2520%2520%2520%2520%253C%252Fdiv%253E%250A%250A%2520%2520%2520%2520%253Cdiv%2520class%253D%2522avatar-wrapper-medium%2522%253E%250A%2520%2520%2520%2520%2520%2520%253Cimg%250A%2520%2520%2520%2520%2520%2520%2520%2520class%253D%2522avatar-medium%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520src%253D%2522images%255Cshahin-khalaji-Ac5sm2yOLFc-unsplash.jpg%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520alt%253D%2522avatar%2522%250A%2520%2520%2520%2520%2520%2520%252F%253E%250A%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522green-badge%2522%253E%253C%252Fdiv%253E%250A%2520%2520%2520%2520%253C%252Fdiv%253E%250A%250A%2520%2520%2520%2520%253Cdiv%2520class%253D%2522avatar-wrapper-large%2522%253E%250A%2520%2520%2520%2520%2520%2520%253Cimg%250A%2520%2520%2520%2520%2520%2520%2520%2520class%253D%2522avatar-large%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520src%253D%2522images%255Cshahin-khalaji-Ac5sm2yOLFc-unsplash.jpg%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520alt%253D%2522avatar%2522%250A%2520%2520%2520%2520%2520%2520%252F%253E%250A%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522green-badge%2522%253E%253C%252Fdiv%253E%250A%2520%2520%2520%2520%253C%252Fdiv%253E"
frameborder="0"
></iframe>
</div>
</div>
</section>
<br />
<hr />
<section class="badges-sec" id="badges-sec">
<h1 class="display-5">Badges</h1>
<p>
Badges can be used for various labelling and other purposes like
showing a count.
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
You get a total of four badges. The text can be changed to suit
your needs.
</p>
</div>
<div class="badges-collection">
<div>
<span class="badge-error">ERROR</span>
<span class="badge-success">SUCCESS</span>
<span class="badge-warning">WARNING</span>
<span class="badge-info">INFO</span>
<span class="badge-neutral">NEUTRAL</span>
<span class="badge-neutral pill">NEUTRAL</span>
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below and
you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%250A%2509%2509%253Cspan%2520class%253D%2522badge-error%2522%253EERROR%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522badge-success%2522%253ESUCCESS%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522badge-warning%2522%253EWARNING%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522badge-info%2522%253EINFO%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522badge-neutral%2522%253ENEUTRAL%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522badge-neutral%2520pill%2522%253ENEUTRAL%253C%252Fspan%253E"
frameborder="0"
></iframe>
</div>
</div>
</section>
<br />
<hr />
<section class="buttons-sec" id="buttons-sec">
<h1 class="display-5">Buttons</h1>
<p>
Different buttons serve different semantic purpose. We provide you
a variety of buttons to suit your needs.
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
You can choose from the buttons below. They come in various
colors and sizes.
</p>
</div>
<div class="buttons-collection">
<div>
<button class="btn btn-primary">Primary</button>
<button class="btn btn-secondary">Secondary</button>
<button class="btn btn-success">Success</button>
<button class="btn btn-danger">Danger</button>
<button class="btn btn-link">Link</button>
<a href="#"
><button class="btn-float">
<i class="fas fa-arrow-up"></i> </button
></a>
<button class="btn-icon btn-icon-hover">
<i class="fas fa-home"></i>
</button>
<button class="btn-outline-icon btn-outline-icon-hover">
<i class="fas fa-home"></i>
</button>
<br /><br />
<button class="btn btn-outline-primary">Primary</button>
<button class="btn btn-outline-secondary">Secondary</button>
<button class="btn btn-outline-success">Success</button>
<button class="btn btn-outline-danger">Danger</button>
<br /><br />
<button class="btn btn-large btn-primary">Large</button>
<button class="btn btn-small btn-secondary">cancel</button>
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below and
you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%2509%253Cbutton%2520class%253D%2522btn%2520btn-primary%2522%253EPrimary%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-secondary%2522%253ESecondary%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-success%2522%253ESuccess%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-danger%2522%253EDanger%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-link%2522%253ELink%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn-float%2522%253E%253Ci%2520class%253D%2522fas%2520fa-plus%2522%253E%253C%252Fi%253E%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn-icon%2520btn-icon-hover%2522%253E%253Ci%2520class%253D%2522fas%2520fa-home%2522%253E%253C%252Fi%253E%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn-outline-icon%2520btn-outline-icon-hover%2522%253E%253Ci%2520class%253D%2522fas%2520fa-home%2522%253E%253C%252Fi%253E%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-outline-primary%2522%253EPrimary%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-outline-secondary%2522%253ESecondary%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-outline-success%2522%253ESuccess%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-outline-danger%2522%253EDanger%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-large%2520btn-primary%2522%253ELarge%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-small%2520btn-secondary%2522%253Ecancel%253C%252Fbutton%253E"
frameborder="0"
></iframe>
</div>
</div>
</section>
<br />
<hr />
<section class="cards-sec" id="cards-sec">
<h1 class="display-5">Cards</h1>
<p>
A card is a flexible content container. It can include headers and
footers and various other options.
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
These cards are built using flexbox, and hence help you with
responsiveness. They have no margins and no width by default. So
feel free to set your own width and margin to these.<br />
We have also included text only cards. You can customize these
cards with different buttons,box-shadow,outline,badges and close
buttons as per your choice.
</p>
</div>
<div class="cards-collection">
<div>
<div style="display: flex; justify-content: space-evenly">
<div
class="text-card-wrapper card-shadow-dark"
style="width: 14rem"
>
<div class="card-heading">
<h1>Simple Heading</h1>
</div>
<div>
<p class="card-body">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quisquam, amet optio, reiciendis maiores provident a
aperiam id architecto, laboriosam quod vitae repellendus
voluptates corporis quas. Similique minima veritatis
ratione in.
</p>
</div>
<div class="card-footer">
<button class="btn btn-link">Sure</button>
<button class="btn btn-link">No,Thanks</button>
</div>
</div>
<div
class="text-card-wrapper card-shadow-dark"
style="width: 14rem"
>
<div class="card-heading">
<h1>Simple Heading</h1>
<button class="btn btn-link">
<i class="fas fa-times"></i>
</button>
</div>
<div>
<p class="card-body">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quisquam, amet optio, reiciendis maiores provident a
aperiam id architecto, laboriosam quod vitae repellendus
voluptates corporis quas. Similique minima veritatis
ratione in.
</p>
</div>
</div>
<div class="image-card-wrapper outlined" style="width: 15rem">
<div class="card-image greater-height">
<img
src="images\mateo-avila-chinchilla-x_8oJhYU31k-unsplash.jpg"
alt="..."
/>
<span class="badge-success">New</span>
</div>
<div class="product-details-wrapper">
<p class="strong">Ether</p>
<p>Pure Cotton polo tshirt</p>
<p>
<span class="strong">Rs395 </span
><span class="line-through">Rs799 </span
><span style="color: #fc452e">(50% OFF)</span>
</p>
</div>
</div>
</div>
<br />
<div style="display: flex; justify-content: space-evenly">
<div class="image-card-wrapper outlined" style="width: 25rem">
<div class="card-image">
<img
src="images\mateo-avila-chinchilla-x_8oJhYU31k-unsplash.jpg"
alt="..."
/>
<button class="btn btn-link">
<i class="fas fa-times"></i>
</button>
<span class="badge-success">New</span>
</div>
<div>
<h3 class="card-heading">A simple heading.</h3>
</div>
<div>
<p class="card-body">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quisquam, amet optio, reiciendis maiores provident a
aperiam id architecto, laboriosam quod vitae repellendus
voluptates corporis quas. Similique minima veritatis
ratione in.
</p>
</div>
<div>
<button class="btn btn-primary">Primary</button>
</div>
</div>
<div
class="image-card-wrapper card-shadow-dark"
style="width: 25rem"
>
<div class="card-image">
<img
src="images\mateo-avila-chinchilla-x_8oJhYU31k-unsplash.jpg"
alt="..."
/>
<p class="top-left">Text Overlay</p>
<p class="top-right">Text Overlay</p>
<p class="bottom-left">Text Overlay</p>
<p class="bottom-right">Text Overlay</p>
<p class="center">Text Overlay</p>
</div>
<div>
<h3 class="card-heading">A simple heading.</h3>
</div>
<div>
<p class="card-body">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quisquam, amet optio, reiciendis maiores provident a
aperiam id architecto, laboriosam quod vitae repellendus
voluptates corporis quas. Similique minima veritatis
ratione in.
</p>
</div>
<div class="card-footer">
<button class="btn btn-link">Sure</button>
<button class="btn btn-link">No,Thanks</button>
</div>
</div>
</div>
</div>
<br />
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below and
you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%252F%252FType1%250A%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522text-card-wrapper%2520card-shadow-dark%2522%2520style%253D%2522width%253A%252015rem%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522card-heading%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ch1%253ESimple%2520Heading%253C%252Fh1%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%2520class%253D%2522card-body%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520Lorem%2520ipsum%2520dolor%2520sit%2520amet%2520consectetur%2520adipisicing%2520elit.%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520Quisquam%252C%2520amet%2520optio%252C%2520reiciendis%2520maiores%2520provident%2520a%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520aperiam%2520id%2520architecto%252C%2520laboriosam%2520quod%2520vitae%2520repellendus%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520voluptates%2520corporis%2520quas.%2520Similique%2520minima%2520veritatis%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520ratione%2520in.%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522card-footer%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-link%2522%253ESure%253C%252Fbutton%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-link%2522%253ENo%252CThanks%253C%252Fbutton%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%252F%252FType2%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522text-card-wrapper%2520card-shadow-dark%2522%2520style%253D%2522width%253A%252015rem%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522card-heading%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ch1%253ESimple%2520Heading%253C%252Fh1%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-link%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ci%2520class%253D%2522fas%2520fa-times%2522%253E%253C%252Fi%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fbutton%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%2520class%253D%2522card-body%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520Lorem%2520ipsum%2520dolor%2520sit%2520amet%2520consectetur%2520adipisicing%2520elit.%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520Quisquam%252C%2520amet%2520optio%252C%2520reiciendis%2520maiores%2520provident%2520a%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520aperiam%2520id%2520architecto%252C%2520laboriosam%2520quod%2520vitae%2520repellendus%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520voluptates%2520corporis%2520quas.%2520Similique%2520minima%2520veritatis%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520ratione%2520in.%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A"
frameborder="0"
></iframe>
<br />
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%250A%252F%252FType%25203%250A%2509%2509%253Cdiv%2520class%253D%2522image-card-wrapper%2520outlined%2522%2520style%253D%2522width%253A%252015rem%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522card-image%2520greater-height%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cimg%2520src%253D%2522images%255Cmateo-avila-chinchilla-x_8oJhYU31k-unsplash.jpg%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520alt%253D%2522...%2522%252F%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522badge-success%2522%253ENew%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522product-details-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%2520class%253D%2522strong%2522%253EEther%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%253EPure%2520Cotton%2520polo%2520tshirt%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522strong%2522%253ERs395%2520%253C%252Fspan%253E%250A%2509%2509%2509%2509%2509%253Cspan%2520class%253D%2522line-through%2522%253ERs799%2520%253C%252Fspan%253E%250A%2509%2509%2509%2509%2509%253Cspan%2520style%253D%2522color%253A%2520%2523fc452e%2522%253E%2850%2525%2520OFF%29%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%252F%252FType%25204%250A%2520%2520%2520%2520%253Cdiv%2520class%253D%2522image-card-wrapper%2520outlined%2522%2520style%253D%2522width%253A%252025rem%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522card-image%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cimg%2520src%253D%2522images%255Cluke-stackpoole-eWqOgJ-lfiI-unsplash.jpg%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520alt%253D%2522...%2522%2520%252F%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-link%2522%253E%253Ci%2520class%253D%2522fas%2520fa-times%2522%253E%253C%252Fi%253E%253C%252Fbutton%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522badge-success%2522%253ENew%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ch3%2520class%253D%2522card-heading%2522%253EA%2520simple%2520heading.%253C%252Fh3%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%2520class%253D%2522card-body%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520Lorem%2520ipsum%2520dolor%2520sit%2520amet%2520consectetur%2520adipisicing%2520elit.%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520Quisquam%252C%2520amet%2520optio%252C%2520reiciendis%2520maiores%2520provident%2520a%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520aperiam%2520id%2520architecto%252C%2520laboriosam%2520quod%2520vitae%2520repellendus%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520voluptates%2520corporis%2520quas.%2520Similique%2520minima%2520veritatis%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520ratione%2520in.%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%253E%253Cbutton%2520class%253D%2522btn%2520btn-primary%2522%253EPrimary%253C%252Fbutton%253E%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E"
frameborder="0"
></iframe>
<br />
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%250A%252F%252FType5%250A%2520%2520%253Cdiv%2520class%253D%2522image-card-wrapper%2520card-shadow-dark%2522%2520style%253D%2522width%253A%252025rem%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522card-image%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cimg%2520src%253D%2522images%255Cluke-stackpoole-eWqOgJ-lfiI-unsplash.jpg%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520alt%253D%2522...%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%252F%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%2520class%253D%2522top-left%2522%253EText%2520Overlay%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%2520class%253D%2522top-right%2522%253EText%2520Overlay%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%2520class%253D%2522bottom-left%2522%253EText%2520Overlay%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%2520class%253D%2522bottom-right%2522%253EText%2520Overlay%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%2520class%253D%2522center%2522%253EText%2520Overlay%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ch3%2520class%253D%2522card-heading%2522%253EA%2520simple%2520heading.%253C%252Fh3%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%2520class%253D%2522card-body%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520Lorem%2520ipsum%2520dolor%2520sit%2520amet%2520consectetur%2520adipisicing%2520elit.%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520Quisquam%252C%2520amet%2520optio%252C%2520reiciendis%2520maiores%2520provident%2520a%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520aperiam%2520id%2520architecto%252C%2520laboriosam%2520quod%2520vitae%2520repellendus%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520voluptates%2520corporis%2520quas.%2520Similique%2520minima%2520veritatis%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520ratione%2520in.%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522card-footer%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-link%2522%253ESure%253C%252Fbutton%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-link%2522%253ENo%252CThanks%253C%252Fbutton%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%253C%252Fdiv%253E"
frameborder="0"
></iframe>
</div>
</div>
</section>
<br />
<hr />
<section class="grids-sec" id="grids-sec">
<h1 class="display-5">Grids</h1>
<p>
Grids are extremely helpful in responsive design. Use them to set
an overall layout.
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
Just add the relevant class name as shown below to get the
desired grid type. You can choose between 2x2 and 4x4 grids, and
can place any number of elements inside the grid parent.
</p>
</div>
<div class="grids-collection">
<div>
<div class="display-grid-2-2">
<div class="child">Grid element</div>
<div class="child">Grid element</div>
<div class="child">Grid element</div>
<div class="child">Grid element</div>
<div class="child">Grid element</div>
<div class="child">Grid element</div>
</div>
<br />
<br />
<div class="display-grid-4-4">
<div class="child">Grid element</div>
<div class="child">Grid element</div>
<div class="child">Grid element</div>
<div class="child">Grid element</div>
<div class="child">Grid element</div>
<div class="child">Grid element</div>
<div class="child">Grid element</div>
<div class="child">Grid element</div>
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below
and you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%253Cdiv%2520class%253D%2522display-grid-2-2%2522%253E%253C%252Fdiv%253E%250A%250A%253Cdiv%2520class%253D%2522display-grid-4-4%2522%253E%253C%252Fdiv%253E"
frameborder="0"
></iframe>
</div>
</div>
</div>
</section>
<br />
<hr />
<section class="images-sec" id="images-sec">
<h1 class="display-5">Images</h1>
<p>
Responsive images change to fit the parent's width. It's height
will get changed to keep the aspect-ratio same.
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
Just add the relevant class name as shown below to make it
responsive. You can also obtain a round image.
</p>
</div>
<div class="images-collection">
<div>
<div class="img-wrapper">
<img
class="responsive"
src="https://via.placeholder.com/1400x300/7FD2E6/ffffff?text=Responsive+Image"
alt="..."
/>
</div>
<div class="img-wrapper">
<img
class="rounded"
src="https://via.placeholder.com/200x200/7FD2E6/ffffff?text=Round+Image"
alt="..."
/>
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below
and you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%253Cimg%2520class%253D%2522responsive%2522src%253D%2522example.jpg%2522%2520alt%253D%2522...%2522%2520%252F%253E%2520%250A%2520%2520%250A%253Cimg%2520class%253D%2522rounded%2522src%253D%2522example.jpg%2522%2520alt%253D%2522...%2522%2520%252F%253E"
frameborder="0"
></iframe>
</div>
</div>
</div>
</section>
<br />
<hr />
<section class="inputs-sec" id="inputs-sec">
<h1 class="display-5">Inputs</h1>
<p>
Extend control over your form fields by adding buttons or text on
either side of the input element.
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
You can choose to have buttons or text on either side of your
input field. It can take any text length as desired.
</p>
</div>
<div class="inputs-collection">
<div>
<div class="input-field-wrapper">
<span class="input-text basic-addon-1">@</span>
<input
class="input-field-1"
type="text"
placeholder="Username"
/>
</div>
<br />
<div class="input-field-wrapper">
<input
class="input-field-2"
type="text"
placeholder="Email id"
/>
<span class="input-text basic-addon-2">@example.com</span>
</div>
<br />
<div class="input-field-wrapper">
<span class="input-text size-medium basic-addon-1"
>medium</span
>
<input
class="input-field-1 size-medium"
type="text"
placeholder="Username"
/>
</div>
<br />
<div class="input-field-wrapper">
<span class="input-text size-large basic-addon-1">large</span>
<input
class="input-field-1 size-large"
type="text"
placeholder="Username"
/>
</div>
<br />
<div class="input-field-wrapper">
<button class="btn btn-secondary basic-addon-1">
Secondary
</button>
<input
class="input-field-1 size-medium"
type="text"
placeholder="Username"
/>
</div>
<br />
<div class="input-field-wrapper">
<input
class="input-field-2 size-medium"
type="password"
placeholder="Enter password"
/>
<button class="btn btn-secondary basic-addon-2">
show password
</button>
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below
and you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%2509%253Cdiv%2520class%253D%2522input-field-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522input-text%2520basic-addon-1%2522%253E%2540%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%253Cinput%2520class%253D%2522input-field-1%2522%2520type%253D%2522text%2522%2520placeholder%253D%2522Username%2522%2520%252F%253E%250A%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%250A%2520%2520%2520%2520%253Cdiv%2520class%253D%2522input-field-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%253Cinput%2520class%253D%2522input-field-2%2522%2520type%253D%2522text%2522%2520placeholder%253D%2522Email%2520id%2522%2520%252F%253E%250A%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522input-text%2520basic-addon-2%2522%253E%2540example.com%253C%252Fspan%253E%250A%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%250A%2520%2520%2520%2520%253Cdiv%2520class%253D%2522input-field-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522input-text%2520size-medium%2520basic-addon-1%2522%253Emedium%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%253Cinput%250A%2520%2520%2520%2520%2520%2520%2520%2520class%253D%2522input-field-1%2520size-medium%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520type%253D%2522text%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520placeholder%253D%2522Username%2522%250A%2520%2520%2520%2520%2520%2520%252F%253E%250A%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%250A%250A%2520%2520%2520%2520%253Cdiv%2520class%253D%2522input-field-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%253Cspan%2520class%253D%2522input-text%2520size-large%2520basic-addon-1%2522%253Elarge%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%253Cinput%250A%2520%2520%2520%2520%2520%2520%2520%2520class%253D%2522input-field-1%2520size-large%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520type%253D%2522text%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520placeholder%253D%2522Username%2522%250A%2520%2520%2520%2520%2520%2520%252F%253E%250A%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%250A%250A%2520%2520%2520%2520%253Cdiv%2520class%253D%2522input-field-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-secondary%2520basic-addon-1%2522%253ESecondary%253C%252Fbutton%253E%250A%2520%2520%2520%2520%2520%2520%253Cinput%250A%2520%2520%2520%2520%2520%2520%2520%2520class%253D%2522input-field-1%2520size-medium%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520type%253D%2522text%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520placeholder%253D%2522Username%2522%250A%2520%2520%2520%2520%2520%2520%252F%253E%250A%2520%2520%2520%2520%253C%252Fdiv%253E%250A%250A%2520%2520%2520%2520%250A%2520%2520%2520%2520%253Cdiv%2520class%253D%2522input-field-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%253Cinput%250A%2520%2520%2520%2520%2520%2520%2520%2520class%253D%2522input-field-2%2520size-medium%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520type%253D%2522password%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520placeholder%253D%2522Enter%2520password%2522%250A%2520%2520%2520%2520%2520%2520%252F%253E%250A%2520%2520%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-secondary%2520basic-addon-2%2522%253Eshow%2520password%253C%252Fbutton%253E%250A%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520"
frameborder="0"
></iframe>
</div>
</div>
</div>
</section>
<br />
<hr />
<section class="modals-sec" id="modals-sec">
<h1 class="display-5">Modals</h1>
<p>They can be used to add dialogues to your site.</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
Modals have <span class="mark">"position:fixed"</span> attached
to them. They are positioned over everything else in the
document. You can close them by clicking on the close buttons.
Also you can set your desired width.
</p>
</div>
<div class="modals-collection">
<div>
<button class="btn btn-primary" id="launchModal">
Launch Modal
</button>
</div>
<div>
<div class="modal-wrapper" style="width: 25rem">
<div class="modal-header">
<h2>Modal title</h2>
<span><i class="fas fa-times" id="closeIt"></i></span>
</div>
<div class="modal-body">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Obcaecati, nemo voluptatum id reprehenderit amet totam.
</p>
</div>
<div class="modal-footer">
<button class="btn btn-outline-secondary" id="closeMe">
Close
</button>
<button class="btn btn-primary">Save</button>
</div>
</div>
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below and
you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%2509%2520%253Cdiv%2520class%253D%2522modal-wrapper%2522%2520style%253D%2522width%253A%252025rem%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522modal-header%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ch2%253EModal%2520title%253C%252Fh2%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%253E%253Ci%2520class%253D%2522fas%2520fa-times%2522%253E%253C%252Fi%253E%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522modal-body%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520Lorem%2520ipsum%2520dolor%2520sit%2520amet%2520consectetur%2520adipisicing%2520elit.%2520Obcaecati%252C%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520nemo%2520voluptatum%2520id%2520reprehenderit%2520amet%2520totam.%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fp%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522modal-footer%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-outline-secondary%2522%2520id%253D%2522closeMe%2522%253EClose%253C%252Fbutton%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cbutton%2520class%253D%2522btn%2520btn-primary%2522%253ESave%253C%252Fbutton%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520"
frameborder="0"
></iframe>
</div>
</div>
</section>
<br />
<hr />
<section class="navbar-sec" id="navbars-sec">
<h1 class="display-5">Navigation Bars</h1>
<p>
Includes space for including your brand logo and navigation links.
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>You can choose from the below styles.</p>
</div>
<div class="navbars-collection">
<div>
<nav class="nav-wrapper-1">
<div class="brand">LOGO.</div>
<div>
<button class="hamburger" id="hamburger">
<i class="fas fa-bars"></i>
</button>
</div>
<div>
<ul
class="list-items-flex list-non-bullet"
id="list-addon-1"
>
<li>Home</li>
<li>Profile</li>
<li>About</li>
<li>Contact</li>
</ul>
</div>
</nav>
<br />
<nav class="nav-wrapper-2">
<div class="brand">LOGO.</div>
<div>
<button class="hamburger" id="hamburger">
<i class="fas fa-bars"></i>
</button>
</div>
<div>
<ul
class="list-items-flex list-non-bullet"
id="list-addon-2"
>
<li>Home</li>
<li>Profile</li>
<li>About</li>
<li>Contact</li>
</ul>
</div>
</nav>
<br />
<nav class="nav-wrapper-3">
<div class="logoAndList-wrapper">
<div class="brand">LOGO.</div>
<div class="list-centered">
<ul
class="list-items-flex list-non-bullet"
id="list-addon-3"
>
<li>Home</li>
<li>Profile</li>
<li>About</li>
<li>Contact</li>
</ul>
</div>
</div>
<div>
<button class="hamburger" id="hamburger">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="search-wrapper">
<input
class="search-wrapper_input"
type="text"
placeholder="Search"
/>
<span><i class="fas fa-search"></i></span>
</div>
</nav>
<br />
<nav class="nav-wrapper-4">
<div class="logoAndList-wrapper">
<div class="brand">LOGO.</div>
<div class="list-centered">
<ul
class="list-items-flex list-non-bullet"
id="list-addon-3"
>
<li>Home</li>
<li>Profile</li>
<li>About</li>
<li>Contact</li>
</ul>
</div>
</div>
<div>
<button class="hamburger" id="hamburger">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="cta-wrapper">
<a class="btn btn-outline-primary" href="">LOG IN</a>
<a class="btn btn-primary" href="">SIGN UP</a>
</div>
</nav>
<br />
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below and
you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%2509%2520%2509%2509%2520%2520%2520%253Cnav%2520class%253D%2522nav-wrapper-1%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522brand%2522%253ELOGO.%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cul%2520class%253D%2522list-items-flex%2520list-non-bullet%2522%2520id%253D%2522list-addon-1%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EHome%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EProfile%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EAbout%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EContact%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Ful%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fnav%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cnav%2520class%253D%2522nav-wrapper-2%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522brand%2522%253ELOGO.%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522list-centered%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cul%2520class%253D%2522list-items-flex%2520list-non-bullet%2522%2520id%253D%2522list-addon-2%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EHome%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EProfile%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EAbout%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EContact%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Ful%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fnav%253E%250A%2520%2520%2520"
frameborder="0"
></iframe>
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%252F%252FType3%2520%250A%253Cnav%2520class%253D%2522nav-wrapper-3%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522logoAndList-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522brand%2522%253ELOGO.%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522list-centered%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cul%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520class%253D%2522list-items-flex%2520list-non-bullet%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520id%253D%2522list-addon-3%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EHome%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EProfile%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EAbout%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EContact%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Ful%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522search-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cinput%2520class%253D%2522search-wrapper_input%2522%2520type%253D%2522text%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520placeholder%253D%2522Search%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%252F%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%253E%253Ci%2520class%253D%2522fas%2520fa-search%2522%253E%253C%252Fi%253E%253C%252Fspan%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fnav%253E%250A%2520%2520%252F%252FType%25204%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%250A%2520%2520%2520%2520%2520%2520%2520%253Cnav%2520class%253D%2522nav-wrapper-4%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522logoAndList-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522brand%2522%253ELOGO.%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522list-centered%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cul%2520class%253D%2522list-items-flex%2520list-non-bullet%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520id%253D%2522list-addon-3%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EHome%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EProfile%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EAbout%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cli%253EContact%253C%252Fli%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Ful%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cdiv%2520class%253D%2522cta-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ca%2520class%253D%2522btn%2520btn-outline-primary%2522%2520href%253D%2522%2522%253ELOG%2520IN%253C%252Fa%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ca%2520class%253D%2522btn%2520btn-primary%2522%2520href%253D%2522%2522%253ESIGN%2520UP%253C%252Fa%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fdiv%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Fnav%253E"
frameborder="0"
></iframe>
</div>
</div>
</section>
<br />
<hr />
<section class="ratings-sec" id="ratings-sec">
<h1 class="display-5">Ratings</h1>
<p>Rating component is used to get feedback from the user.</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>We have a star rating component as shown below.</p>
</div>
<div class="ratings-collection">
<div class="star-rating-wrapper">
<label>
<input class="star-rating-input" type="checkbox" />
<i class="fas fa-star star-rating-icon"></i>
</label>
<label>
<input class="star-rating-input" type="checkbox" />
<i class="fas fa-star star-rating-icon"></i>
</label>
<label>
<input class="star-rating-input" type="checkbox" />
<i class="fas fa-star star-rating-icon"></i>
</label>
<label>
<input class="star-rating-input" type="checkbox" />
<i class="fas fa-star star-rating-icon"></i>
</label>
<label>
<input class="star-rating-input" type="checkbox" />
<i class="fas fa-star star-rating-icon"></i>
</label>
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below and
you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%2520%2520%2520%2520%253Cdiv%2520class%253D%2522star-rating-wrapper%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Clabel%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cinput%2520class%253D%2522star-rating-input%2522%2520type%253D%2522checkbox%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ci%2520class%253D%2522fas%2520fa-star%2520star-rating-icon%2522%253E%253C%252Fi%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Flabel%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Clabel%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cinput%2520class%253D%2522star-rating-input%2522%2520type%253D%2522checkbox%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ci%2520class%253D%2522fas%2520fa-star%2520star-rating-icon%2522%253E%253C%252Fi%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Flabel%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Clabel%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cinput%2520class%253D%2522star-rating-input%2522%2520type%253D%2522checkbox%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ci%2520class%253D%2522fas%2520fa-star%2520star-rating-icon%2522%253E%253C%252Fi%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Flabel%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Clabel%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cinput%2520class%253D%2522star-rating-input%2522%2520type%253D%2522checkbox%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ci%2520class%253D%2522fas%2520fa-star%2520star-rating-icon%2522%253E%253C%252Fi%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Flabel%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Clabel%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Cinput%2520class%253D%2522star-rating-input%2522%2520type%253D%2522checkbox%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%253Ci%2520class%253D%2522fas%2520fa-star%2520star-rating-icon%2522%253E%253C%252Fi%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253C%252Flabel%253E%250A%2520%2520%2520%2520%2520%253C%252Fdiv%253E"
frameborder="0"
></iframe>
</div>
</div>
</section>
<br />
<hr />
<section class="toasts-sec" id="toasts-sec">
<h1 class="display-5">Toasts</h1>
<p>
Toasts are simple notifications used to notify the user about
various things.
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
You can choose from the following three toast types. They come
with an optional close button.
</p>
</div>
<div class="toasts-collection">
<div>
<div>
<button class="btn btn-outline-primary" id="showToast">
Show Toast
</button>
</div>
<div class="toast-wrapper success-toast" id="exampleToast">
<span>Saved! </span> <i class="fas fa-times close-btn"></i>
</div>
<div class="toast-wrapper success-toast">
<span>Saved! </span> <i class="fas fa-times"></i>
</div>
<div class="toast-wrapper failure-toast">
<span>Something is wrong!</span> <i class="fas fa-times"></i>
</div>
<div class="toast-wrapper info-toast">
<span>Saving...</span> <i class="fas fa-times"></i>
</div>
</div>
<p style="margin-left: 1rem">
<span class="strong">USAGE:</span> Just copy the code below and
you are good to go !
</p>
<div class="carbon-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28249%2C237%2C212%2C1%29&t=cobalt&wt=none&l=javascript&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=IBM+Plex+Mono&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%2520%2520%2520%253Cdiv%2520class%253D%2522toast-wrapper%2520success-toast%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%253ESaved%21%2520%253C%252Fspan%253E%253Ci%2520class%253D%2522fas%2520fa-times%2520%2522%253E%253C%252Fi%253E%250A%2520%2520%2520%253C%252Fdiv%253E%250A%250A%2520%2520%2520%253Cdiv%2520class%253D%2522toast-wrapper%2520failure-toast%2520%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%253ESomething%2520is%2520wrong%21%253C%252Fspan%253E%2520%253Ci%2520class%253D%2522fas%2520fa-times%2520%2522%253E%253C%252Fi%253E%250A%2520%2520%2520%253C%252Fdiv%253E%250A%250A%2520%2520%2520%253Cdiv%2520class%253D%2522toast-wrapper%2520info-toast%2522%253E%250A%2520%2520%2520%2520%2520%2520%2520%2520%253Cspan%253ESaving...%253C%252Fspan%253E%2520%253Ci%2520class%253D%2522fas%2520fa-times%2522%253E%253C%252Fi%253E%250A%2520%2520%2520%253C%252Fdiv%253E"
frameborder="0"
></iframe>
</div>
</div>
</section>
<br />
<hr />
<section class="typography-sec" id="typography-sec">
<h1 class="display-5">Typography</h1>
<p>
Use the various typographic styles to convey relevant meaning. You
get options for headings,paragraphs and lists. We also have other
headings, the Display headings, which are larger than usual in
size. Also, you can get the styles of heading tags, without using
the heading tag itself, simply by including the classnames
"h1-h6". You can also include an optional hover effect over the
lists.
</p>
<div class="examples-wrapper">
<h1 class="display-6">Examples</h1>
<p>
Use the relevant class names to get the desired style. You can
also combine class names. Use classnames as "display-1" (1 to 6
are available) to get larger texts. Lists can also have an
optional hover effect using classname "onHover".
</p>
</div>
<div class="typography-collection">
<div>
<h1 class="display-2">Very large text</h1>
<p class="h1">Paragraph-styled as h1 tag</p>
<p class="h2">Paragraph-styled as h2 tag</p>
<p class="h3">Paragraph-styled as h3 tag</p>
<p class="h4">Paragraph-styled as h4 tag</p>
<p class="h5">Paragraph-styled as h5 tag</p>
<p class="h6">Paragraph-styled as h6 tag</p>
<br />
<p class="strong">This is strong text.</p>
<p class="mark">This is marked text.</p>
<p class="italic">This is italic text.</p>
<p class="small">This is small text.</p>
<p class="underline">This is underlined text.</p>
<p class="line-through">This is a line-through text.</p>
<p class="centered">This is centered text</p>
<p class="strong">Following are the lists:</p>
<ul class="list-items-flex list-non-bullet onHover">
<li>home</li>
<li>profile</li>
<li>about</li>
<li>contact</li>
</ul>
<br />
<ul class="list-non-bullet">