Channel Apps
[Markdown] 

Handbuch: 3. Bootstrap

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
<div class="bs-docs-section clearfix">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="navbars">Navbars</h1>
</div>
<div class="bs-component">
<nav class="navbar navbar-expand-lg bg-primary">
<div class="container-fluid"> <a class="navbar-brand" href="#">Navbar</a> <button class="navbar-toggler" data-bs-toggle="collapse"
data-bs-target="#navbarColor01"> <span class="navbar-toggler-icon"></span> </button>
<div class="collapse navbar-collapse" id="navbarColor01">
<ul class="navbar-nav me-auto">
<li class="nav-item"> <a class="nav-link active" href="#">Home <span class="visually-hidden">(current)</span>
</a> </li>
<li class="nav-item"> <a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item"> <a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item"> <a class="nav-link" href="#">About</a>
</li>
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#">Dropdown</a>
<div class="dropdown-menu"> <a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else
here</a> <a class="dropdown-item" href="#">Separated
link</a> </div>
</li>
</ul>
<button class="btn btn-secondary my-2 my-sm-0">Search</button>
</div>
</div>
</nav>
</div>
<div class="bs-component">
<nav class="navbar navbar-expand-lg bg-dark">
<div class="container-fluid"> <a class="navbar-brand" href="#">Navbar</a> <button class="navbar-toggler" data-bs-toggle="collapse"
data-bs-target="#navbarColor02"> <span class="navbar-toggler-icon"></span> </button>
<div class="collapse navbar-collapse" id="navbarColor02">
<ul class="navbar-nav me-auto">
<li class="nav-item"> <a class="nav-link active" href="#">Home <span class="visually-hidden">(current)</span>
</a> </li>
<li class="nav-item"> <a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item"> <a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item"> <a class="nav-link" href="#">About</a>
</li>
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#">Dropdown</a>
<div class="dropdown-menu"> <a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else
here</a> <a class="dropdown-item" href="#">Separated
link</a> </div>
</li>
</ul>
<button class="btn btn-secondary my-2 my-sm-0">Search</button>
</div>
</div>
</nav>
</div>
<div class="bs-component">
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid"> <a class="navbar-brand" href="#">Navbar</a> <button class="navbar-toggler" data-bs-toggle="collapse"
data-bs-target="#navbarColor03"> <span class="navbar-toggler-icon"></span> </button>
<div class="collapse navbar-collapse" id="navbarColor03">
<ul class="navbar-nav me-auto">
<li class="nav-item"> <a class="nav-link active" href="#">Home <span class="visually-hidden">(current)</span>
</a> </li>
<li class="nav-item"> <a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item"> <a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item"> <a class="nav-link" href="#">About</a>
</li>
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#">Dropdown</a>
<div class="dropdown-menu"> <a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else
here</a> <a class="dropdown-item" href="#">Separated
link</a> </div>
</li>
</ul>
<button class="btn btn-secondary my-2 my-sm-0">Search</button>
</div>
</div>
</nav>
</div>
<div class="bs-component">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid"> <a class="navbar-brand" href="#">Navbar</a> <button class="navbar-toggler" data-bs-toggle="collapse"
data-bs-target="#navbarColor04"> <span class="navbar-toggler-icon"></span> </button>
<div class="collapse navbar-collapse" id="navbarColor04">
<ul class="navbar-nav me-auto">
<li class="nav-item"> <a class="nav-link active" href="#">Home <span class="visually-hidden">(current)</span>
</a> </li>
<li class="nav-item"> <a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item"> <a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item"> <a class="nav-link" href="#">About</a>
</li>
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#">Dropdown</a>
<div class="dropdown-menu"> <a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else
here</a> <a class="dropdown-item" href="#">Separated
link</a> </div>
</li>
</ul>
<button class="btn btn-secondary my-2 my-sm-0">Search</button>
</div>
</div>
</nav>
</div>
</div>
</div>
</div>
<div class="bs-docs-section">
<div class="page-header">
<div class="row">
<div class="col-lg-12">
<h1 id="buttons">Buttons</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-7">
<p class="bs-component"> <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-info">Info</button>
<button class="btn btn-warning">Warning</button> <button class="btn btn-danger">Danger</button> <button class="btn btn-light">Light</button>
<button class="btn btn-dark">Dark</button> <button class="btn btn-link">Link</button> </p>
<p class="bs-component"> <button class="btn btn-primary disabled">Primary</button> <button class="btn btn-secondary disabled">Secondary</button>
<button class="btn btn-success disabled">Success</button> <button class="btn btn-info disabled">Info</button> <button class="btn btn-warning
disabled">Warning</button> <button class="btn btn-danger disabled">Danger</button> <button class="btn btn-light disabled">Light</button> <button
class="btn btn-dark disabled">Dark</button> <button class="btn btn-link disabled">Link</button> </p>
<p class="bs-component"> <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-info">Info</button> <button class="btn
btn-outline-warning">Warning</button> <button class="btn btn-outline-danger">Danger</button> <button class="btn btn-outline-light">Light</button>
<button class="btn btn-outline-dark">Dark</button> </p>
<div class="bs-component">
<div class="btn-group"> <button class="btn btn-primary">Primary</button>
<div class="btn-group"> <button id="btnGroupDrop1" class="btn btn-primary dropdown-toggle" data-bs-toggle="dropdown"></button>
<div class="dropdown-menu"> <a class="dropdown-item" href="#">Dropdown link</a> <a class="dropdown-item" href="#">Dropdown link</a> </div>
</div>
</div>
<div class="btn-group"> <button class="btn btn-success">Success</button>
<div class="btn-group"> <button id="btnGroupDrop2" class="btn btn-success dropdown-toggle" data-bs-toggle="dropdown"></button>
<div class="dropdown-menu"> <a class="dropdown-item" href="#">Dropdown link</a> <a class="dropdown-item" href="#">Dropdown link</a> </div>
</div>
</div>
<div class="btn-group"> <button class="btn btn-info">Info</button>
<div class="btn-group"> <button id="btnGroupDrop3" class="btn btn-info dropdown-toggle" data-bs-toggle="dropdown"></button>
<div class="dropdown-menu"> <a class="dropdown-item" href="#">Dropdown link</a> <a class="dropdown-item" href="#">Dropdown link</a> </div>
</div>
</div>
<div class="btn-group"> <button class="btn btn-danger">Danger</button>
<div class="btn-group"> <button id="btnGroupDrop4" class="btn btn-danger dropdown-toggle" data-bs-toggle="dropdown"></button>
<div class="dropdown-menu"> <a class="dropdown-item" href="#">Dropdown link</a> <a class="dropdown-item" href="#">Dropdown link</a> </div>
</div>
</div>
</div>
<div class="bs-component"> <button class="btn btn-primary btn-lg">Large button</button> <button class="btn btn-primary">Default button</button>
<button class="btn btn-primary btn-sm">Small button</button> </div>
</div>
<div class="col-lg-5">
<div class="bs-component">
<div class="d-grid gap-2"> <button class="btn btn-lg btn-primary">Block button</button> <button class="btn btn-lg btn-primary">Block button</button>
</div>
</div>
<div class="bs-component mb-3">
<div class="btn-group"> Checkbox 1 Checkbox 2 Checkbox 3 </div>
</div>
<div class="bs-component mb-3">
<div class="btn-group"> Radio 1 Radio 2 Radio 3 </div>
</div>
<div class="bs-component">
<div class="btn-group-vertical"> <button class="btn btn-primary">Button</button> <button class="btn btn-primary">Button</button> <button class="btn
btn-primary">Button</button> <button class="btn btn-primary">Button</button> <button class="btn btn-primary">Button</button> <button class="btn
btn-primary">Button</button> </div>
</div>
<div class="bs-component mb-3">
<div class="btn-group"> <button class="btn btn-secondary">Left</button>
<button class="btn btn-secondary">Middle</button> <button class="btn btn-secondary">Right</button> </div>
</div>
<div class="bs-component mb-3">
<div class="btn-toolbar">
<div class="btn-group me-2"> <button class="btn btn-secondary">1</button> <button class="btn btn-secondary">2</button> <button class="btn
btn-secondary">3</button> <button class="btn btn-secondary">4</button> </div>
<div class="btn-group me-2"> <button class="btn btn-secondary">5</button> <button class="btn btn-secondary">6</button> <button class="btn
btn-secondary">7</button> </div>
<div class="btn-group"> <button class="btn btn-secondary">8</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="typography">Typography</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<h3> Heading <small class="text-body-secondary">with faded
secondary text</small> </h3>
<p class="lead">Vivamus sagittis lacus vel augue laoreet
rutrum faucibus dolor auctor.</p>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<h2>Example body text</h2>
<p>Nullam quis risus eget <a href="#">urna mollis ornare</a>
vel eu leo. Cum sociis natoque penatibus et magnis dis
parturient montes, nascetur ridiculus mus. Nullam id dolor
id nibh ultricies vehicula.</p>
<p><small>This line of text is meant to be treated as fine
print.</small></p>
<p>The following is <strong>rendered as bold text</strong>.</p>
<p>The following is <em>rendered as italicized text</em>.</p>
<p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<h2>Emphasis classes</h2>
<p class="text-primary">.text-primary</p>
<p class="text-primary-emphasis">.text-primary-emphasis</p>
<p class="text-secondary">.text-secondary</p>
<p class="text-secondary-emphasis">.text-secondary-emphasis</p>
<p class="text-success">.text-success</p>
<p class="text-success-emphasis">.text-success-emphasis</p>
<p class="text-danger">.text-danger</p>
<p class="text-danger-emphasis">.text-danger-emphasis</p>
<p class="text-warning">.text-warning</p>
<p class="text-warning-emphasis">.text-warning-emphasis</p>
<p class="text-info">.text-info</p>
<p class="text-info">.text-info-emphasis</p>
<p class="text-light">.text-light</p>
<p class="text-light">.text-light-emphasis</p>
<p class="text-dark">.text-dark</p>
<p class="text-dark">.text-dark-emphasis</p>
<p class="text-body">.text-body</p>
<p class="text-body">.text-body-emphasis</p>
<p class="text-body-secondary">.text-body-secondary</p>
<p class="text-body-tertiary">.text-body-tertiary</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h2 id="type-blockquotes">Blockquotes</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<blockquote class="blockquote">
<p class="mb-0">Lorem ipsum dolor sit amet, consectetur
adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>
Someone famous in <cite title="Source Title">Source Title</cite>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<blockquote class="blockquote">
<p class="mb-0">Lorem ipsum dolor sit amet, consectetur
adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>
Someone famous in <cite title="Source Title">Source Title</cite>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<blockquote class="blockquote">
<p class="mb-0">Lorem ipsum dolor sit amet, consectetur
adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>
Someone famous in <cite title="Source Title">Source Title</cite>
</div>
</div>
</div>
</div>
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="tables">Tables</h1>
</div>
<div class="bs-component">
<table class="table table-hover">
<thead> <tr>
<th scope="col">Type</th>
<th scope="col">Column heading</th>
<th scope="col">Column heading</th>
<th scope="col">Column heading</th>
</tr>
</thead> <tbody>
<tr class="table-active">
<th scope="row">Active</th>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr>
<th scope="row">Default</th>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-primary">
<th scope="row">Primary</th>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-secondary">
<th scope="row">Secondary</th>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-success">
<th scope="row">Success</th>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-danger">
<th scope="row">Danger</th>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-warning">
<th scope="row">Warning</th>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-info">
<th scope="row">Info</th>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-light">
<th scope="row">Light</th>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-dark">
<th scope="row">Dark</th>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="forms">Forms</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="bs-component"> Legend
<div class="row"> Email
<div class="col-sm-10"> </div>
</div>
<div> Email address <small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone
else.</small> </div>
<div> Password </div>
<div> Example select 1 2 3 4 5 </div>
<div> Example disabled select 1 2 3 4 5 </div>
<div> Example multiple select 1 2 3 4 5 </div>
<div> Example textarea </div>
<div> Default file input example </div>
Radio buttons
<div class="form-check"> Option one is this and that—be sure
to include why it's great </div>
<div class="form-check"> Option two can be something else
and selecting it will deselect option one </div>
<div class="form-check disabled"> Option three is disabled </div>
Checkboxes
<div class="form-check"> Default checkbox </div>
<div class="form-check"> Checked checkbox </div>
Switches
<div class="form-check form-switch"> Default switch checkbox
input </div>
<div class="form-check form-switch"> Checked switch checkbox
input </div>
Ranges Example range Disabled range Example range <button class="btn btn-primary">Submit</button> </div>
</div>
<div class="col-lg-4 offset-lg-1">
<div> Disabled input </div>
<div> Readonly input </div>
<div class="has-success"> Valid input
<div class="valid-feedback">Success! You've done it.</div>
</div>
<div class="has-danger"> Invalid input
<div class="invalid-feedback">Sorry, that username's taken.
Try another?</div>
</div>
<div> Large input </div>
<div> Default input </div>
<div> Small input </div>
<div> Input addons
<div>
<div class="input-group mb-3"> <span class="input-group-text">$</span> <span class="input-group-text">.00</span> </div>
<div class="input-group mb-3"> <button class="btn btn-primary" id="button-addon2">Button</button> </div>
</div>
</div>
<div> Floating labels
<div class="form-floating mb-3"> Email address </div>
<div class="form-floating"> Password </div>
</div>
</div>
</div>
</div>
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="navs">Navs</h1>
</div>
</div>
</div>
<div class="row mb-5">
<div class="col-lg-6">
<h2 id="nav-tabs">Tabs</h2>
<div class="bs-component">
<ul class="nav nav-tabs">
<li class="nav-item"> <a class="nav-link active" data-bs-toggle="tab" href="#home">Home</a> </li>
<li class="nav-item"> <a class="nav-link" data-bs-toggle="tab" href="#profile">Profile</a> </li>
<li class="nav-item"> <a class="nav-link disabled" href="#">Disabled</a> </li>
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#">Dropdown</a>
<div class="dropdown-menu">
<h6 class="dropdown-header">Dropdown header</h6>
<a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a> <a class="dropdown-item" href="#">Something else
here</a>
<a class="dropdown-item" href="#">Separated link</a> </div>
</li>
</ul>
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade show active" id="home">
<p>Raw denim you probably haven't heard of them jean
shorts Austin. Nesciunt tofu stumptown aliqua, retro
synth master cleanse. Mustache cliche tempor,
williamsburg carles vegan helvetica. Reprehenderit
butcher retro keffiyeh dreamcatcher synth. Cosby
sweater eu banh mi, qui irure terry richardson ex
squid. Aliquip placeat salvia cillum iphone. Seitan
aliquip quis cardigan american apparel, butcher
voluptate nisi qui.</p>
</div>
<div class="tab-pane fade" id="profile">
<p>Food truck fixie locavore, accusamus mcsweeney's
marfa nulla single-origin coffee squid. Exercitation
+1 labore velit, blog sartorial PBR leggings next
level wes anderson artisan four loko farm-to-table
craft beer twee. Qui photo booth letterpress, commodo
enim craft beer mlkshk aliquip jean shorts ullamco ad
vinyl cillum PBR. Homo nostrud organic, assumenda
labore aesthetic magna delectus mollit.</p>
</div>
<div class="tab-pane fade" id="dropdown1">
<p>Etsy mixtape wayfarers, ethical wes anderson tofu
before they sold out mcsweeney's organic lomo retro
fanny pack lo-fi farm-to-table readymade. Messenger
bag gentrify pitchfork tattooed craft beer, iphone
skateboard locavore carles etsy salvia banksy hoodie
helvetica. DIY synth PBR banksy irony. Leggings
gentrify squid 8-bit cred pitchfork.</p>
</div>
<div class="tab-pane fade" id="dropdown2">
<p>Trust fund seitan letterpress, keytar raw denim
keffiyeh etsy art party before they sold out master
cleanse gluten-free squid scenester freegan cosby
sweater. Fanny pack portland seitan DIY, art party
locavore wolf cliche high life echo park Austin. Cred
vinyl keffiyeh DIY salvia PBR, banh mi before they
sold out farm-to-table VHS viral locavore cosby
sweater.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<h2 id="nav-pills">Pills</h2>
<div class="bs-component">
<ul class="nav nav-pills">
<li class="nav-item"> <a class="nav-link active" href="#">Active</a>
</li>
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#">Dropdown</a>
<div class="dropdown-menu">
<h6 class="dropdown-header">Dropdown header</h6>
<a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a> <a class="dropdown-item" href="#">Something else
here</a>
<a class="dropdown-item" href="#">Separated link</a> </div>
</li>
<li class="nav-item"> <a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item"> <a class="nav-link disabled" href="#">Disabled</a> </li>
</ul>
</div>
<br />
<div class="bs-component">
<ul class="nav nav-pills flex-column">
<li class="nav-item"> <a class="nav-link active" href="#">Active</a>
</li>
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#">Dropdown</a>
<div class="dropdown-menu">
<h6 class="dropdown-header">Dropdown header</h6>
<a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a> <a class="dropdown-item" href="#">Something else
here</a>
<a class="dropdown-item" href="#">Separated link</a> </div>
</li>
<li class="nav-item"> <a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item"> <a class="nav-link disabled" href="#">Disabled</a> </li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<h2 id="nav-breadcrumbs">Breadcrumbs</h2>
<div class="bs-component">
<ol class="breadcrumb">
<li class="breadcrumb-item active">Home</li>
</ol>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item active">Library</li>
</ol>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#">Library</a></li>
<li class="breadcrumb-item active">Data</li>
</ol>
</div>
</div>
<div class="col-lg-6">
<h2 id="pagination">Pagination</h2>
<div class="bs-component">
<div>
<ul class="pagination">
<li class="page-item disabled"> <a class="page-link" href="#">«</a> </li>
<li class="page-item active"> <a class="page-link" href="#">1</a> </li>
<li class="page-item"> <a class="page-link" href="#">2</a>
</li>
<li class="page-item"> <a class="page-link" href="#">3</a>
</li>
<li class="page-item"> <a class="page-link" href="#">4</a>
</li>
<li class="page-item"> <a class="page-link" href="#">5</a>
</li>
<li class="page-item"> <a class="page-link" href="#">»</a>
</li>
</ul>
</div>
<div>
<ul class="pagination pagination-lg">
<li class="page-item disabled"> <a class="page-link" href="#">«</a> </li>
<li class="page-item active"> <a class="page-link" href="#">1</a> </li>
<li class="page-item"> <a class="page-link" href="#">2</a>
</li>
<li class="page-item"> <a class="page-link" href="#">3</a>
</li>
<li class="page-item"> <a class="page-link" href="#">4</a>
</li>
<li class="page-item"> <a class="page-link" href="#">5</a>
</li>
<li class="page-item"> <a class="page-link" href="#">»</a>
</li>
</ul>
</div>
<div>
<ul class="pagination pagination-sm">
<li class="page-item disabled"> <a class="page-link" href="#">«</a> </li>
<li class="page-item active"> <a class="page-link" href="#">1</a> </li>
<li class="page-item"> <a class="page-link" href="#">2</a>
</li>
<li class="page-item"> <a class="page-link" href="#">3</a>
</li>
<li class="page-item"> <a class="page-link" href="#">4</a>
</li>
<li class="page-item"> <a class="page-link" href="#">5</a>
</li>
<li class="page-item"> <a class="page-link" href="#">»</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="indicators">Indicators</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h2>Alerts</h2>
<div class="bs-component">
<div class="alert alert-dismissible alert-warning"> <button class="btn-close" data-bs-dismiss="alert"></button>
<h4 class="alert-heading">Warning!</h4>
<p class="mb-0">Best check yo self, you're not looking too
good. Nulla vitae elit libero, a pharetra augue.
Praesent commodo cursus magna, <a href="#" class="alert-link">vel scelerisque nisl consectetur et</a>.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<div class="alert alert-dismissible alert-danger"> <button class="btn-close" data-bs-dismiss="alert"></button> <strong>Oh
snap!</strong> <a href="#" class="alert-link">Change a
few things up</a> and try submitting again. </div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="alert alert-dismissible alert-success"> <button class="btn-close" data-bs-dismiss="alert"></button> <strong>Well
done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a>. </div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="alert alert-dismissible alert-info"> <button class="btn-close" data-bs-dismiss="alert"></button> <strong>Heads
up!</strong> This <a href="#" class="alert-link">alert
needs your attention</a>, but it's not super important.
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<div class="alert alert-dismissible alert-primary"> <button class="btn-close" data-bs-dismiss="alert"></button> <strong>Oh
snap!</strong> <a href="#" class="alert-link">Change a
few things up</a> and try submitting again. </div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="alert alert-dismissible alert-secondary"> <button class="btn-close" data-bs-dismiss="alert"></button> <strong>Well
done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a>. </div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="alert alert-dismissible alert-light"> <button class="btn-close" data-bs-dismiss="alert"></button> <strong>Heads
up!</strong> This <a href="#" class="alert-link">alert
needs your attention</a>, but it's not super important.
</div>
</div>
</div>
</div>
<div>
<h2>Badges</h2>
<div class="bs-component mb-4"> <span class="badge bg-primary">Primary</span>
<span class="badge bg-secondary">Secondary</span> <span class="badge bg-success">Success</span> <span class="badge bg-danger">Danger</span> <span
class="badge bg-warning">Warning</span>
<span class="badge bg-info">Info</span> <span class="badge bg-light">Light</span> <span class="badge bg-dark">Dark</span>
</div>
<div class="bs-component"> <span class="badge rounded-pill bg-primary">Primary</span> <span class="badge rounded-pill bg-secondary">Secondary</span>
<span class="badge rounded-pill bg-success">Success</span> <span class="badge rounded-pill bg-danger">Danger</span> <span class="badge rounded-pill
bg-warning">Warning</span> <span class="badge rounded-pill bg-info">Info</span> <span class="badge rounded-pill bg-light">Light</span> <span
class="badge rounded-pill bg-dark">Dark</span> </div>
</div>
</div>
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="progress">Progress</h1>
</div>
<h3 id="progress-basic">Basic</h3>
<div class="bs-component">
<div class="progress"> </div>
</div>
<h3 id="progress-alternatives">Contextual alternatives</h3>
<div class="bs-component">
<div class="progress"> </div>
<div class="progress"> </div>
<div class="progress"> </div>
<div class="progress"> </div>
</div>
<h3 id="progress-multiple">Multiple bars</h3>
<div class="bs-component">
<div class="progress"> </div>
</div>
<h3 id="progress-striped">Striped</h3>
<div class="bs-component">
<div class="progress"> </div>
<div class="progress"> </div>
<div class="progress"> </div>
<div class="progress"> </div>
<div class="progress"> </div>
</div>
<h3 id="progress-animated">Animated</h3>
<div class="bs-component">
<div class="progress"> </div>
</div>
</div>
</div>
</div>
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="containers">Containers</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h2>List groups</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between align-items-center"> Cras justo odio <span class="badge bg-primary rounded-pill">14</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center"> Dapibus ac facilisis in <span class="badge bg-primary
rounded-pill">2</span> </li>
<li class="list-group-item d-flex justify-content-between align-items-center"> Morbi leo risus <span class="badge bg-primary rounded-pill">1</span>
</li>
</ul>
</div>
<div class="bs-component">
<ul class="list-group">
<li class="list-group-item list-group-item-primary d-flex justify-content-between align-items-center"> Cras justo
odio <span class="badge bg-primary rounded-pill">14</span>
</li>
<li class="list-group-item list-group-item-secondary d-flex justify-content-between align-items-center">
Dapibus ac facilisis in <span class="badge bg-primary rounded-pill">2</span> </li>
<li class="list-group-item list-group-item-success d-flex justify-content-between align-items-center"> Morbi leo
risus <span class="badge bg-primary rounded-pill">1</span>
</li>
<li class="list-group-item list-group-item-info d-flex justify-content-between align-items-center"> Cras justo
odio <span class="badge bg-primary rounded-pill">5</span>
</li>
<li class="list-group-item list-group-item-warning d-flex justify-content-between align-items-center"> Dapibus ac
facilisis in <span class="badge bg-primary rounded-pill">4</span> </li>
<li class="list-group-item list-group-item-danger d-flex justify-content-between align-items-center"> Morbi leo
risus <span class="badge bg-primary rounded-pill">9</span>
</li>
<li class="list-group-item list-group-item-light d-flex justify-content-between align-items-center"> Morbi leo
risus <span class="badge bg-primary rounded-pill">8</span>
</li>
<li class="list-group-item list-group-item-dark d-flex justify-content-between align-items-center"> Morbi leo
risus <span class="badge bg-primary rounded-pill">0</span>
</li>
</ul>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="list-group"> <a href="#" class="list-group-item list-group-item-action active">Cras justo odio</a> <a href="#" class="list-group-item
list-group-item-action">Dapibus
ac facilisis in</a> <a href="#" class="list-group-item list-group-item-action disabled">Morbi leo risus</a> </div>
</div>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="list-group"> <a href="#" class="list-group-item list-group-item-action flex-column align-items-start active"> </a>
<div class="d-flex w-100 justify-content-between"><a href="#" class="list-group-item list-group-item-action flex-column align-items-start active">
</a>
<h5 class="mb-1"><a href="#" class="list-group-item list-group-item-action flex-column align-items-start active">List group item heading</a></h5>
<a href="#" class="list-group-item list-group-item-action flex-column align-items-start active"> <small>3 days ago</small> </a></div>
<a href="#" class="list-group-item list-group-item-action flex-column align-items-start active"> </a>
<p class="mb-1"><a href="#" class="list-group-item list-group-item-action flex-column align-items-start active">Donec id elit non mi porta gravida
at eget
metus. Maecenas sed diam eget risus varius blandit.</a></p>
<a href="#" class="list-group-item list-group-item-action flex-column align-items-start active"> <small>Donec id
elit non mi porta.</small> </a> <a href="#" class="list-group-item list-group-item-action flex-column align-items-start"> </a>
<div class="d-flex w-100 justify-content-between"><a href="#" class="list-group-item list-group-item-action flex-column align-items-start"> </a>
<h5 class="mb-1"><a href="#" class="list-group-item list-group-item-action flex-column align-items-start">List group item heading</a></h5>
<a href="#" class="list-group-item list-group-item-action flex-column align-items-start">
<small class="text-muted">3 days ago</small> </a></div>
<a href="#" class="list-group-item list-group-item-action flex-column align-items-start"> </a>
<p class="mb-1"><a href="#" class="list-group-item list-group-item-action flex-column align-items-start">Donec
id elit non mi porta gravida at eget metus. Maecenas
sed diam eget risus varius blandit.</a></p>
<a href="#" class="list-group-item list-group-item-action flex-column align-items-start"> <small class="text-muted">Donec id elit non mi
porta.</small>
</a> </div>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-lg-12">
<h2>Cards</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<div class="card text-white bg-primary mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Primary card title</h4>
<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 class="card bg-secondary mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Secondary card title</h4>
<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 class="card text-white bg-success mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Success card title</h4>
<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 class="card text-white bg-danger mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Danger card title</h4>
<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 class="card text-white bg-warning mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Warning card title</h4>
<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 class="card text-white bg-info mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Info card title</h4>
<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 class="card bg-light mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Light card title</h4>
<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 class="card text-white bg-dark mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Dark card title</h4>
<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>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="card border-primary mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Primary card title</h4>
<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 class="card border-secondary mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Secondary card title</h4>
<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 class="card border-success mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Success card title</h4>
<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 class="card border-danger mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Danger card title</h4>
<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 class="card border-warning mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Warning card title</h4>
<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 class="card border-info mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Info card title</h4>
<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 class="card border-light mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Light card title</h4>
<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 class="card border-dark mb-3" style="max-width:20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Dark card title</h4>
<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>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="card mb-3">
<h3 class="card-header">Card header</h3>
<div class="card-body">
<h5 class="card-title">Special title treatment</h5>
<h6 class="card-subtitle text-muted">Support card
subtitle</h6>
</div>
Image cap
<div class="card-body">
<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>
<ul class="list-group list-group-flush">
<li class="list-group-item">Cras justo odio</li>
<li class="list-group-item">Dapibus ac facilisis in</li>
<li class="list-group-item">Vestibulum at eros</li>
</ul>
<div class="card-body"> <a href="#" class="card-link">Card
link</a> <a href="#" class="card-link">Another link</a>
</div>
<div class="card-footer text-muted"> 2 days ago </div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Card title</h4>
<h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>
<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="card-link">Card link</a> <a href="#" class="card-link">Another link</a> </div>
</div>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-lg-12">
<h2>Accordions</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="bs-component">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne"> <button class="accordion-button" data-bs-toggle="collapse" data-bs-target="#collapseOne"> Accordion
Item #1 </button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" data-bs-parent="#accordionExample">
<div class="accordion-body"> <strong>This is the
first item's accordion body.</strong> It is shown
by default, until the collapse plugin adds the
appropriate classes that we use to style each
element. These classes control the overall
appearance, as well as the showing and hiding via
CSS transitions. You can modify any of this with
custom CSS or overriding our default variables. It's
also worth noting that just about any HTML can go
within the <code>.accordion-body</code>, though the
transition does limit overflow. </div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo"> <button class="accordion-button collapsed" data-bs-toggle="collapse" data-bs-target="#collapseTwo">
Accordion Item #2 </button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" data-bs-parent="#accordionExample">
<div class="accordion-body"> <strong>This is the
second item's accordion body.</strong> It is
hidden by default, until the collapse plugin adds
the appropriate classes that we use to style each
element. These classes control the overall
appearance, as well as the showing and hiding via
CSS transitions. You can modify any of this with
custom CSS or overriding our default variables. It's
also worth noting that just about any HTML can go
within the <code>.accordion-body</code>, though the
transition does limit overflow. </div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree"> <button class="accordion-button collapsed" data-bs-toggle="collapse"
data-bs-target="#collapseThree"> Accordion Item #3 </button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" data-bs-parent="#accordionExample">
<div class="accordion-body"> <strong>This is the
third item's accordion body.</strong> It is hidden
by default, until the collapse plugin adds the
appropriate classes that we use to style each
element. These classes control the overall
appearance, as well as the showing and hiding via
CSS transitions. You can modify any of this with
custom CSS or overriding our default variables. It's
also worth noting that just about any HTML can go
within the <code>.accordion-body</code>, though the
transition does limit overflow. </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="dialogs">Dialogs</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<h2>Modals</h2>
<div class="bs-component">
<div class="modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Modal title</h5>
<button class="btn-close" data-bs-dismiss="modal"> <span></span>
</button> </div>
<div class="modal-body">
<p>Modal body text goes here.</p>
</div>
<div class="modal-footer"> <button class="btn btn-primary">Save changes</button> <button class="btn btn-secondary"
data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<h2>Offcanvas</h2>
<div class="bs-component"> <a class="btn btn-primary" data-bs-toggle="offcanvas" href="#offcanvasExample"> Link
with href </a> <button class="btn btn-primary" data-bs-toggle="offcanvas" data-bs-target="#offcanvasExample"> Button with
data-bs-target </button>
<div class="offcanvas offcanvas-start" id="offcanvasExample">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasExampleLabel">Offcanvas</h5>
<button class="btn-close text-reset" data-bs-dismiss="offcanvas"></button> </div>
<div class="offcanvas-body">
<div> Some text as placeholder. In real life you can
have the elements you have chosen. Like, text, images,
lists, etc. </div>
<div class="dropdown mt-3"> <button class="btn btn-secondary dropdown-toggle" id="dropdownMenuButton" data-bs-toggle="dropdown">
Dropdown button </button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><a class="dropdown-item" href="#">Something else
here</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<h2>Popovers</h2>
<div class="bs-component mb-5"> <button class="btn btn-secondary" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="left"
data-bs-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Left</button> <button class="btn btn-secondary" data-bs-container="body"
data-bs-toggle="popover" data-bs-placement="top" data-bs-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Top</button> <button
class="btn btn-secondary" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="bottom" data-bs-content="Vivamus sagittis lacus vel
augue laoreet rutrum faucibus.">Bottom</button> <button class="btn btn-secondary" data-bs-container="body" data-bs-toggle="popover"
data-bs-placement="right" data-bs-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Right</button> </div>
<h2>Tooltips</h2>
<div class="bs-component mb-5"> <button class="btn btn-secondary" data-bs-toggle="tooltip" data-bs-placement="left">Left</button> <button class="btn
btn-secondary" data-bs-toggle="tooltip" data-bs-placement="top">Top</button> <button class="btn btn-secondary" data-bs-toggle="tooltip"
data-bs-placement="bottom">Bottom</button> <button class="btn btn-secondary" data-bs-toggle="tooltip" data-bs-placement="right">Right</button>
</div>
<h2>Toasts</h2>
<div class="bs-component">
<div class="toast show">
<div class="toast-header"> <strong class="me-auto">Bootstrap</strong>
<small>11 mins ago</small> <button class="btn-close ms-2 mb-1" data-bs-dismiss="toast"> <span></span> </button>
</div>
<div class="toast-body"> Hello, world! This is a toast
message. </div>
</div>
</div>
</div>
</div>
</div>
<div id="source-modal" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Source Code</h4>
<button class="btn btn-primary btn-copy"> Copy Code</button>
</div>
<div class="modal-body">
<pre class="language-html"><code></code></pre>
</div>
</div>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Checkbox 1 Checkbox 2 Checkbox 3
Radio 1 Radio 2 Radio 3

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Heading with faded secondary text

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.

Example body text

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.

This line of text is meant to be treated as fine print.

The following is rendered as bold text.

The following is rendered as italicized text.

An abbreviation of the word attribute is attr.

Emphasis classes

.text-primary

.text-primary-emphasis

.text-secondary

.text-secondary-emphasis

.text-success

.text-success-emphasis

.text-danger

.text-danger-emphasis

.text-warning

.text-warning-emphasis

.text-info

.text-info-emphasis

.text-light

.text-light-emphasis

.text-dark

.text-dark-emphasis

.text-body

.text-body-emphasis

.text-body-secondary

.text-body-tertiary

Blockquotes

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Someone famous in Source Title

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Someone famous in Source Title

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Someone famous in Source Title
Type Column heading Column heading Column heading
Active Column content Column content Column content
Default Column content Column content Column content
Primary Column content Column content Column content
Secondary Column content Column content Column content
Success Column content Column content Column content
Danger Column content Column content Column content
Warning Column content Column content Column content
Info Column content Column content Column content
Light Column content Column content Column content
Dark Column content Column content Column content
Legend
Email
Email address We'll never share your email with anyone else.
Password
Example select 1 2 3 4 5
Example disabled select 1 2 3 4 5
Example multiple select 1 2 3 4 5
Example textarea
Default file input example
Radio buttons
Option one is this and that—be sure to include why it's great
Option two can be something else and selecting it will deselect option one
Option three is disabled
Checkboxes
Default checkbox
Checked checkbox
Switches
Default switch checkbox input
Checked switch checkbox input
Ranges Example range Disabled range Example range
Disabled input
Readonly input
Valid input
Success! You've done it.
Invalid input
Sorry, that username's taken. Try another?
Large input
Default input
Small input
Input addons
$ .00
Floating labels
Email address
Password

Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.

Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit.

Pagination

Alerts

Warning!

Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.

Oh snap! Change a few things up and try submitting again.
Well done! You successfully read this important alert message.
Heads up! This alert needs your attention, but it's not super important.
Oh snap! Change a few things up and try submitting again.
Well done! You successfully read this important alert message.
Heads up! This alert needs your attention, but it's not super important.

Badges

Primary Secondary Success Danger Warning Info Light Dark
Primary Secondary Success Danger Warning Info Light Dark

Basic

Contextual alternatives

Multiple bars

Striped

Animated

List groups

Cards

Header

Primary card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Secondary card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Success card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Danger card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Warning card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Info card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Light card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Dark card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Primary card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Secondary card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Success card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Danger card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Warning card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Info card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Light card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Header

Dark card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Card header

Special title treatment
Support card subtitle
Image cap

Some quick example text to build on the card title and make up the bulk of the card's content.

  • Cras justo odio
  • Dapibus ac facilisis in
  • Vestibulum at eros

Card title

Card subtitle

Some quick example text to build on the card title and make up the bulk of the card's content.

Card link Another link

Accordions

This is the first item's accordion body. It is shown by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.

This is the second item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.

This is the third item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.

Modals

Offcanvas

Link with href
Offcanvas
Some text as placeholder. In real life you can have the elements you have chosen. Like, text, images, lists, etc.

Popovers

Tooltips

Toasts

Bootstrap 11 mins ago
Hello, world! This is a toast message.