-
Notifications
You must be signed in to change notification settings - Fork 0
/
docs.html
2399 lines (2126 loc) · 93.3 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"/>
<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/favicon.ico">
<link rel="icon" type="image/png" href="./assets/img/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Anchor Bootstrap 4.1.3 UI Kit by WowThemesNet</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport'/>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Nunito:300,300i,400,600,700" rel="stylesheet">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<!-- Main CSS -->
<link href="./assets/css/main.css" rel="stylesheet"/>
<!-- Animation CSS -->
<link href="./assets/css/vendor/aos.css" rel="stylesheet"/>
<!-- Docs CSS -->
<link href="./assets/css/vendor/bootstrap-toc.css" rel="stylesheet"/>
<link href="./assets/css/vendor/prism.css" rel="stylesheet"/>
</head>
<body>
<!----------------------------------------------------------------------
End fixed sidebar
------------------------------------------------------------------------>
<nav id="toc" class="fixedsidebar d-none d-lg-block">
<h5 class="mt-4 mb-4 pt-1"><a class="text-dark" href="./index.html"><strong>Anchor UI KIT</strong> Docs</a></h5>
<a target="_blank" href="https://www.paypal.me/wowthemes/10" class="btn btn-primary mb-4 btn-sm btn-round"><i class="fas fa-coffee mr-1"></i> Buy me a coffee</a>
</nav>
<!----------------------------------------------------------------------
End fixed sidebar
------------------------------------------------------------------------>
<main class="content-withfixedsidebar">
<!----------------------------------------------------------------------
NAVBAR (remove topnav if you don't want changed nav background on scroll)
------------------------------------------------------------------------>
<nav class="topnav navbar navbar-expand-lg navbar-dark bg-primary fixed-top">
<div class="container">
<a class="navbar-brand d-lg-none" href="./index.html"><i class="fas fa-anchor mr-2"></i><strong>Anchor UI</strong> Kit</a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarColor02" aria-controls="navbarColor02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbarColor02">
<ul class="navbar-nav mr-auto d-flex align-items-center">
<li class="nav-item">
<a class="nav-link" href="./index.html">Intro</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Examples </a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./landing.html">Home Landing</a>
<a class="dropdown-item" href="./login.html">User Login</a>
<a class="dropdown-item" href="./blog.html">Blog Index</a>
<a class="dropdown-item" href="./page.html">Sample Page</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="./docs.html">Docs</a>
</li>
<li class="d-lg-none nav-item">
<a class="nav-link" target="_blank" href="https://www.paypal.me/wowthemes/10"><i class="fas fa-coffee mr-1"></i> Buy me a coffee</a>
</li>
</ul>
<ul class="navbar-nav ml-auto d-flex align-items-center">
<li class="nav-item">
<span class="nav-link" href="#">
<a class="btn btn-info btn-round shadow" href="#" data-toggle="modal" data-target="#modal_newsletter"><i class="fas fa-cloud-download-alt"></i> Download UI Kit <a href="https://github.com/wowthemesnet/Anchor-Bootstrap-UI-Kit/archive/master.zip" class="downloadzip" class="hidden"></a>
</a>
</span>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<!-------------------------------------
HEADER
--------------------------------------->
<div class="jumbotron jumbotron-lg jumbotron-fluid jumbotron-lg-withnav mb-3 bg-primary position-relative">
<div class="container text-white h-100 tofront">
<div class="row align-items-center justify-content-center text-center">
<div class="col-md-10">
<h1 class="display-3">Documentation</h1>
</div>
</div>
</div>
</div>
<!--- END HEADER -->
<!-- DOCS CONTENT -->
<div class="container pt-5 pb-5 mb-5">
<div class="row justify-content-center">
<div class="col-lg-11">
<div id="docsarea" class="font-weight-normal">
<p class="lead">Hey there! You’re looking at <a href="./index.html">Anchor UI Bootstrap KIT</a> official documentation. Anchor is a free Bootstrap UI Kit with flexible, ready to use UI components which will hep you build websites faster. Let’s begin!
</p>
<section class="pt-5 mt-4 pb-5 bg-info rounded">
<div class="container text-center">
<div class="d-flex">
<div class="col">
<a href="./login.html"><img src="assets/img/demo/screenshot4.png" class="shadow-lg"></a>
</div>
<div class="col">
<a href="./blog.html"><img src="assets/img/demo/screenshot2.png" class="shadow-lg"></a>
</div>
<div class="col">
<a href="./landing.html"><img src="assets/img/demo/screenshot3.png" class="shadow-lg"></a>
</div>
</div>
</div>
</section>
<h1>Quick Start</h1>
<!----------------------------------------------------------------------
file structure
------------------------------------------------------------------------>
<h2>File Structure</h2>
<code>
<ul class="ascii">
<li>assets/
<ul>
<li>css/
<ul>
<li>vendor/
<ul>
<li>aos.css</li>
<li>prism.css</li>
</ul>
</li>
<li>main.css</li>
<li>main.css.map</li>
</ul>
</li>
<li>img/</li>
<li>js/
<ul>
<li>vendor/
<ul>
<li>jquery.min.js</li>
<li>bootstrap.min.js</li>
<li>popper.min.js</li>
<li>aos.js</li>
</ul>
</li>
<li>functions.js</li>
</ul>
</li>
<li>scss/
<ul>
<li>1-frameworks/
<ul>
<li>bootstrap/
<ul>
<li>source/</li>
<li>bootstrap.scss</li>
<li>bootstrap-grid.scss</li>
<li>bootstrap-reboot.scss</li>
<li>bootstrap-user-variables.scss</li>
</ul>
</li>
<li>_index.scss</li>
</ul>
</li>
<li>2-plugins</li>
<li>3-base</li>
<li>4-modules</li>
<li>5-layout</li>
</ul>
<ul><li>main.scss</li></ul>
</li>
<li>index.html</li>
<li>blog.html</li>
<li>landing.html</li>
<li>page.html</li>
<li>login.html</li>
<li>starter-template.html</li>
<li>docs.html</li>
<li>gulpfile.js</li>
<li>package.json</li>
<li>README.md</li>
</ul>
</li>
</ul>
</code>
<!----------------------------------------------------------------------
basic template
------------------------------------------------------------------------>
<h2>Basic Template</h2>
<!-- Trigger -->
<button class="btn btn-sm btn-round btncopy mb-2" data-clipboard-target="#quickstart">
Copy to clipboard
</button>
<pre id="quickstart" class="language-markup">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/favicon.ico">
<link rel="icon" type="image/png" href="./assets/img/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Site Title</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport'/>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:300,300i,400,600,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<!-- CSS -->
<link href="./assets/css/main.css" rel="stylesheet"/>
<link href="./assets/css/vendor/aos.css" rel="stylesheet"/>
</head>
<body>
<main> My content goes here </main>
<!-- Javascript -->
<script src="./assets/js/vendor/jquery.min.js" type="text/javascript"></script>
<script src="./assets/js/vendor/popper.min.js" type="text/javascript"></script>
<script src="./assets/js/vendor/bootstrap.min.js" type="text/javascript"></script>
<script src="./assets/js/functions.js" type="text/javascript"></script>
</body>
</html>
</pre>
<!----------------------------------------------------------------------
gulp
------------------------------------------------------------------------>
<h1>Install Gulp</h1>
<p>Gulp can automate tasks in your development workflow. Gulp is also required in order to work with <code>scss</code> files. In order to use Gulp you will need to download Node JS first:</p>
<p class="mb-3"><a href="https://nodejs.org/en/" class="btn btn-primary btn-icon" target="_blank">
<i class="fab fa-node-js mr-2"></i> Download Node JS</a>
</p>
<p>After Node is installed you can now proceed to Gulp installation. To do that simply run the following command in your terminal. This will install Gulp globally. Aferwards you can cd to you project’s folder where our KIT is installed.</p>
<code>npm install gulp-cli -g</code>
<!----------------------------------------------------------------------
scss
------------------------------------------------------------------------>
<h1>Customize with SCSS</h1>
<p>It is highly recommended that all the customized styles to be stored only within the user’s files from the <code>scss</code> folder. Gulp is required for this. </p>
<ol>
<li>Download the project’s zip.</li>
<li>Make sure you have node.js (https://nodejs.org/en/) installed.</li>
<li>Type <code class="highlighter-rouge">npm install</code> in terminal/console in the source folder where <code class="highlighter-rouge">package.json</code> is located.</li>
<li>Make sure you have gulp <code class="highlighter-rouge">npm install gulp</code></li>
<li>Run in terminal <code class="highlighter-rouge">gulp open-app</code> for opening the Dashboard Page (default) of the product.</li>
<li>Run in terminal <code class="highlighter-rouge">gulp compile-scss</code> for a single compilation or <code class="highlighter-rouge">gulp watch</code> for continous compilation of the changes that you make in <code class="highlighter-rouge">*.scss</code> files. This command should be run in the same folder where <code class="highlighter-rouge">gulpfile.js</code> and <code class="highlighter-rouge">package.json</code> are located.</li>
</ol>
<div class="alert alert-orange mt-5 d-flex align-items-center">
<div>
<span class="align-self-center iconbox iconsmall fill rounded-circle bg-danger text-white shadow border-0 mr-2"><i class="fas fa-bullhorn"></i>
</span>
</div>
<div>When working with SCSS, you only need to these 2 files: <ul>
<li><code>assets/scss/frameworks/bootstrap/bootstrap-user-variables.scss</code> (here you can edit or add variables)</li>
<li><code>assets/scss/main.scss</code> (here you will customize your style)</li>
</ul>
Do not touch anything else! Everything you edit in these 2 files will be compiled in <code>main.css</code>.
</div>
</div>
<h1>Components</h1>
<!----------------------------------------------------------------------
colors
------------------------------------------------------------------------>
<h2>Colors</h2>
<div class="alert alert-dark mb-5">
Options:
<ul>
<li>Background: <code>bg-*color</code></li>
<li>Text: <code>text-*color</code></li>
<li>Alert: <code>alert-*color</code></li>
<li>Button: <code>btn-*color</code></li>
<li>Badge: <code>badge-*color</code></li>
</ul>
</div>
<div class="d-flex text-white align-items-center h-100 text-center">
<div class="col-md-4 bg-primary p-5" style="height:130px;">
<h5>Primary</h5>
</div>
<div class="col-md-4 bg-secondary p-5" style="height:130px;">
<h5>Secondary</h5>
</div>
<div class="col-md-4 bg-info p-5" style="height:130px;">
<h5>Info</h5>
</div>
</div>
<div class="d-flex text-white align-items-center h-100 text-center">
<div class="col-md-4 bg-success p-5" style="height:130px;">
<h5>Success</h5>
</div>
<div class="col-md-4 bg-warning p-5" style="height:130px;">
<h5>Warning</h5>
</div>
<div class="col-md-4 bg-danger p-5" style="height:130px;">
<h5>Danger</h5>
</div>
</div>
<div class="d-flex text-white align-items-center h-100 text-center">
<div class="col-md-4 bg-purple p-5" style="height:130px;">
<h5>Purple</h5>
</div>
<div class="col-md-4 bg-black p-5" style="height:130px;">
<h5>Black</h5>
</div>
<div class="col-md-4 bg-cyan p-5" style="height:130px;">
<h5>Cyan</h5>
</div>
</div>
<div class="d-flex text-white align-items-center h-100 text-center">
<div class="col-md-4 bg-white p-5 border border-right-0 border-top-0" style="height:130px;">
<h5 class="text-dark">White</h5>
</div>
<div class="col-md-4 bg-orange p-5" style="height:130px;">
<h5>Orange</h5>
</div>
<div class="col-md-4 bg-light p-5 border border-left-0 border-top-0" style="height:130px;">
<h5 class="text-dark">Light</h5>
</div>
</div>
<!----------------------------------------------------------------------
alerts
------------------------------------------------------------------------>
<h2>Alerts</h2>
<div class="alert alert-dark mb-5">
Options:
<ul>
<li>Background: <code>alert-*color</code></li>
<li>Text: <code>text-*color</code></li>
<li>Shadow: <code>shadow</code>, <code>shadow-sm</code>, <code>shadow-lg</code></li>
</ul>
</div>
<div class="row mb-4">
<div class="col-md-6">
<div class="alert alert-primary shadow-lg" role="alert">
A simple primary alert-check it out!
</div>
<div class="alert alert-secondary" role="alert">
A simple secondary alert-check it out!
</div>
<div class="alert alert-success" role="alert">
A simple success alert-check it out!
</div>
</div>
<div class="col-md-6">
<div class="alert alert-danger" role="alert">
<i class="fas fa-bullhorn"></i> A simple danger alert-check it out! <button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-warning" role="alert">
A simple warning alert-check it out!
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-info" role="alert">
A simple info alert-check it out! <button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
<script type="text/plain" class="language-markup"><div class="alert alert-primary shadow-lg" role="alert">
A simple primary alert-check it out!
</div></script>
<script type="text/plain" class="language-markup"><div class="alert alert-danger" role="alert">
<i class="fas fa-bullhorn"></i> A simple danger alert-check it out! <button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div></script>
<!----------------------------------------------------------------------
animations
------------------------------------------------------------------------>
<h2>Animations</h2>
<div class="alert alert-dark mb-5">
Options:
<ul>
<li>
Fade animations:
<ul>
<li>fade</li>
<li>fade-up</li>
<li>fade-down</li>
<li>fade-left</li>
<li>fade-right</li>
<li>fade-up-right</li>
<li>fade-up-left</li>
<li>fade-down-right</li>
<li>fade-down-left</li>
</ul>
</li>
<li>
Flip animations:
<ul>
<li>flip-up</li>
<li>flip-down</li>
<li>flip-left</li>
<li>flip-right</li>
</ul>
</li>
<li>
Slide animations:
<ul>
<li>slide-up</li>
<li>slide-down</li>
<li>slide-left</li>
<li>slide-right</li>
</ul>
</li>
<li>
Zoom animations:
<ul>
<li>zoom-in</li>
<li>zoom-in-up</li>
<li>zoom-in-down</li>
<li>zoom-in-left</li>
<li>zoom-in-right</li>
<li>zoom-out</li>
<li>zoom-out-up</li>
<li>zoom-out-down</li>
<li>zoom-out-left</li>
<li>zoom-out-right</li>
</ul>
</li>
</ul>
</div>
<div class="alert alert-dark mb-5">
Call: <code>AOS.init({ duration: 800 });</code>
</div>
<p>Add animation effect with <code>data-aos="*animation"</code>. Example:</p>
<script type="text/plain" class="language-markup"><p data-aos="fade-left">This is from left.</p>
<p data-aos="fade-right">This is from right.</p>
<p data-aos="fade-down">This is from down.</p>
<p data-aos="fade-up">This is from up.</p></script>
<!----------------------------------------------------------------------
avatars
------------------------------------------------------------------------>
<h2>Avatars</h2>
<div class="alert alert-dark mb-5">
Options:
<ul>
<li>Round: <code>rounded-circle</code></li>
<li>Size: <code>width="*"</code></li>
<li>Shadow: <code>shadow</code>, <code>shadow-sm</code>, <code>shadow-lg</code></li>
</ul>
</div>
<div class="mb-3">
<img class="rounded-circle shadow" src="assets/img/demo/avatar2.jpg" width="50">
<img class="rounded-circle shadow" src="assets/img/demo/avatar2.jpg" width="70">
<img class="rounded-circle shadow" src="assets/img/demo/avatar2.jpg" width="90">
</div>
<script type="text/plain" class="language-markup"><img class="rounded-circle shadow" src="assets/img/demo/avatar2.jpg" width="50">
<img class="rounded-circle shadow" src="assets/img/demo/avatar2.jpg" width="70">
<img class="rounded-circle shadow" src="assets/img/demo/avatar2.jpg" width="90">
</script>
<!----------------------------------------------------------------------
badges
------------------------------------------------------------------------>
<h2>Badges</h2>
<div class="alert alert-dark mb-5">
Options:
<ul>
<li>Background: <code>badge-*color</code></li>
<li>Text: <code>text-*color</code></li>
<li>Shadow: <code>shadow</code>, <code>shadow-sm</code>, <code>shadow-lg</code></li>
</ul>
</div>
<div class="row">
<div class="col-md-12">
<span class="badge badge-pill badge-primary">Primary</span>
<span class="badge badge-pill badge-secondary">Secondary</span>
<span class="badge badge-pill badge-success">Success</span>
<span class="badge badge-pill badge-danger">Danger</span>
<span class="badge badge-pill badge-warning">Warning</span>
<span class="badge badge-pill badge-info">Info</span>
<a class="btn btn-primary" href="#">
Profile <span class="badge badge-warning ml-2">15%</span>
</a>
</div>
</div>
<script type="text/plain" class="language-markup"><span class="badge badge-pill badge-primary">Primary</span>
</script>
<script type="text/plain" class="language-markup"><a class="btn btn-primary" href="#">Profile <span class="badge badge-warning ml-2">15%</span></a></script>
<!----------------------------------------------------------------------
buttons
------------------------------------------------------------------------>
<h2>Buttons</h2>
<div class="alert alert-dark mb-5">
Options
<ul>
<li>Background: <code>btn-*color</code></li>
<li>Text: <code>text-*color</code></li>
<li>Size: <code>btn-sm</code>, <code>btn</code>, <code>btn-lg</code></li>
<li>Outline: <code>btn-outline-*color</code></li>
<li>Round: <code>btn-round</code></li>
<li>Width: <code>btn-block w-100</code></li>
<li>Shadow: <code>shadow</code>, <code>shadow-sm</code>, <code>shadow-lg</code></li>
</ul>
</div>
<div class="row mb-4">
<div class="col-md-3">
<a href="#" class="btn btn-block btn-primary mb-2">Default</a>
</div>
<div class="col">
<a href="#" class="btn btn-block btn-outline-primary mb-2">Outline</a>
</div>
<div class="col">
<a href="#" class="btn btn-block btn-primary btn-round mb-2 shadow-lg">Round</a>
</div>
<div class="col">
<a href="#" class="btn btn-block btn-outline-primary btn-round mb-2">Outline</a>
</div>
</div>
<script type="text/plain" class="language-markup"><a href="#" class="btn btn-primary">Default</a>
<a href="#" class="btn btn-outline-primary">Outline</a>
<a href="#" class="btn btn-primary btn-round shadow-lg">Round</a>
<a href="#" class="btn btn-outline-primary btn-round">Outline Round</a>
</script>
<!----------------------------------------------------------------------
cta
------------------------------------------------------------------------>
<h2>Call to action</h2>
<div class="alert alert-dark mb-5">
Options
<ul>
<li>Background: <code>bg-*color</code></li>
<li>Text: <code>text-*color</code></li>
<li>Shadow: <code>shadow</code>, <code>shadow-sm</code>, <code>shadow-lg</code></li>
<li>Not round: <code>jumbotron-fluid</code></li>
</ul>
</div>
<div class="jumbotron p-5 jumbotron-fluid bg-primary">
<div class="container h-100">
<div class="row justify-content-between align-items-center text-md-center text-lg-left">
<div class="col-lg-9">
<h5 class="font-weight-light text-white">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
</div>
<div class="col-lg-3 text-md-center text-lg-right mt-4 mb-4">
<a href="#" class="btn btn-lg btn-info">Call to action</a>
</div>
</div>
</div>
</div>
<script type="text/plain" class="language-markup"><!-- Call to action -->
<div class="jumbotron p-5 jumbotron-fluid bg-primary">
<div class="container h-100">
<div class="row justify-content-between align-items-center text-md-center text-lg-left">
<div class="col-lg-9">
<h5 class="font-weight-light text-white">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
</div>
<div class="col-lg-3 text-md-center text-lg-right mt-4 mb-4">
<a href="#" class="btn btn-lg btn-info">Call to action</a>
</div>
</div>
</div>
</div></script>
<br/>
<div class="jumbotron p-5 jumbotron-fluid bg-info">
<div class="container text-center h-100">
<h5 class="font-weight-light mb-4">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
<a href="#" class="btn btn-lg btn-primary">Call to action</a>
</div>
</div>
<script type="text/plain" class="language-markup"><!-- Call to action -->
<div class="jumbotron p-5 jumbotron-fluid bg-info">
<div class="container text-center h-100">
<h5 class="font-weight-light mb-4">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
<a href="#" class="btn btn-lg btn-primary">Call to action</a>
</div>
</div></script>
<br/>
<div class="jumbotron p-5 jumbotron-fluid bg-warning">
<div class="container h-100">
<div class="row justify-content-between align-items-center text-md-center text-lg-left">
<div class="col-lg-9">
<h5 class="font-weight-light text-dark">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
</div>
<div class="col-lg-3 text-md-center text-lg-right mt-4 mb-4">
<a href="#" class="btn btn-lg btn-outline-dark">Call to action</a>
</div>
</div>
</div>
</div>
<script type="text/plain" class="language-markup"><!-- Call to action -->
<div class="jumbotron p-5 jumbotron-fluid bg-warning">
<div class="container h-100">
<div class="row justify-content-between align-items-center text-md-center text-lg-left">
<div class="col-lg-9">
<h5 class="font-weight-light text-dark">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
</div>
<div class="col-lg-3 text-md-center text-lg-right mt-4 mb-4">
<a href="#" class="btn btn-lg btn-outline-dark">Call to action</a>
</div>
</div>
</div>
</div></script>
<!----------------------------------------------------------------------
cards
------------------------------------------------------------------------>
<h2>Cards</h2>
<div class="alert alert-dark mb-5">
Options
<ul>
<li>Shadow: <code>shadow</code>, <code>shadow-sm</code>, <code>shadow-lg</code></li>
<li>No border: <code>border-0</code></li>
<li>No rounded: <code>rounded-0</code></li>
</ul>
</div>
<div class="row mb-5">
<div class="col-lg-6 mt-5">
<p><b>Author Card</b></p>
<div class="card shadow-sm border-0">
<img class="card-img-top" src="./assets/img/demo/1.jpg" alt="Card image cap">
<div class="card-body text-center">
<img class="rounded-circle shadow mt-neg5" src="assets/img/demo/avatar.png" width="70">
<h5 class="card-title">Sal</h5>
<p class="card-text text-muted">
Hi, I am the author of Anchor Bootstrap UI Kit @wowthemesnet.
</p>
<div class="text-center">
<a target="_blank" href="https://facebook.com/wowthemesnet/"><span class="iconbox iconsmall rounded-circle bg-secondary text-white mr-1"><i class="fab fa-facebook-f"></i></span></a>
<a target="_blank" href="https://twitter.com/wowthemesnet"><span class="iconbox iconsmall rounded-circle bg-info text-white mr-1"><i class="fab fa-twitter"></i></span></a>
<a target="_blank" href="https://github.com/wowthemesnet"><span class="iconbox iconsmall rounded-circle bg-dark text-white"><i class="fab fa-github"></i></span></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-5">
<p><b>Simple Card</b></p>
<div class="card shadow-sm border-0">
<img class="card-img-top" src="./assets/img/demo/2.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Just a card</h5>
<p class="card-text text-muted">
Some quick example text to build on the card title and make up the bulk of the card's content.
</p>
<a href="#" class="btn btn-info btn-round">Read More</a>
</div>
</div>
</div>
<div class="col-xl-6 mt-5">
<p><b>Card Overlay</b></p>
<div class="card bg-dark overlay overlay-black text-white shadow-lg border-0">
<img class="card-img" src="./assets/img/demo/7.jpg" alt="Card image">
<div class="card-img-overlay d-flex align-items-center text-center p-5">
<div class="card-body">
<h3 class="card-title">Overlay center align</h3>
<p class="card-text text-muted">
With supporting text below as a natural lead-in to additional content.
</p>
<a href="#" class="btn btn-info btn-round">Do anything</a>
</div>
</div>
</div>
</div>
<div class="col-xl-6 mt-5">
<p><b>Featured Blog Card</b></p>
<div class="card flex-md-row mb-4 box-shadow h-xl-300">
<div class="card-body d-flex flex-column align-items-start">
<strong class="d-inline-block mb-2 text-purple">Business</strong>
<h3 class="mb-0">
<a class="text-dark" href="#">Living the Dream on a Sunny Island</a>
</h3>
<div class="mb-1 text-muted">
Nov 12
</div>
<p class="card-text mb-auto">
This is a wider card with supporting text below as a natural lead-in to additional content.
</p>
<a class="text-gray" href="#">Continue reading</a>
</div>
<img class="card-img-right flex-auto d-none d-md-block" src="assets/img/demo/blog1.jpg">
</div>
</div>
</div>
<script type="text/plain" class="language-markup"><!-- Author Card -->
<div class="card shadow-sm border-0">
<img class="card-img-top" src="./assets/img/demo/1.jpg" alt="Card image cap">
<div class="card-body text-center">
<img class="rounded-circle shadow mt-neg5" src="./assets/img/demo/avatar.png" width="70">
<h5 class="card-title">Sal</h5>
<p class="card-text text-muted">
Hi, I am the author of Anchor Bootstrap UI Kit @wowthemesnet.
</p>
<div class="text-center">
<a target="_blank" href="#"><span class="iconbox iconsmall rounded-circle bg-secondary text-white mr-1"><i class="fab fa-facebook-f"></i></span></a>
<a target="_blank" href="#"><span class="iconbox iconsmall rounded-circle bg-info text-white mr-1"><i class="fab fa-twitter"></i></span></a>
<a target="_blank" href="#"><span class="iconbox iconsmall rounded-circle bg-dark text-white"><i class="fab fa-github"></i></span></a>
</div>
</div>
</div></script>
<br/>
<script type="text/plain" class="language-markup"><!-- Simple Card -->
<div class="card shadow-sm border-0">
<img class="card-img-top" src="./assets/img/demo/2.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Just a card</h5>
<p class="card-text text-muted">
Some quick example text.
</p>
<a href="#" class="btn btn-info btn-round">Read More</a>
</div>
</div></script>
<br/>
<script type="text/plain" class="language-markup"><!-- Card Overlay -->
<div class="card bg-dark overlay overlay-black text-white shadow-lg border-0">
<img class="card-img" src="./assets/img/demo/7.jpg" alt="Card image">
<div class="card-img-overlay d-flex align-items-center text-center">
<div class="card-body">
<h3 class="card-title">Overlay center align</h3>
<p class="card-text text-muted">
With supporting text below as a natural lead-in to additional content.
</p>
<a href="#" class="btn btn-info btn-round">Do anything</a>
</div>
</div>
</div></script>
<br/>
<script type="text/plain" class="language-markup"><!-- Featured Card Blog -->
<div class="card flex-md-row mb-4 box-shadow h-xl-300">
<div class="card-body d-flex flex-column align-items-start">
<strong class="d-inline-block mb-2 text-purple">Business</strong>
<h3 class="mb-0">
<a class="text-dark" href="#">Living the Dream on a Sunny Island</a>
</h3>
<div class="mb-1 text-muted">
Nov 12
</div>
<p class="card-text mb-auto">
This is a wider card with supporting text below as a natural lead-in to additional content.
</p>
<a class="text-gray" href="#">Continue reading</a>
</div>
<img class="card-img-right flex-auto d-none d-md-block" src="assets/img/demo/blog1.jpg">
</div>
</script>
<!----------------------------------------------------------------------
carousel
------------------------------------------------------------------------>
<h2>Carousel</h2>
<div class="alert alert-dark mb-5">
Options
<ul>
<li>Shadow: <code>shadow</code>, <code>shadow-sm</code>, <code>shadow-lg</code></li>
<li>Rounded: <code>rounded</code></li>
</ul>
</div>
<div class="alert alert-dark mb-5">
Images with non-equal heights may cause a jump effect. Here's the call for a smooth transition:
<code> $('.carousel').on('slide.bs.carousel', function (event) {
var height = $(event.relatedTarget).height();
var $innerCarousel = $(event.target).find('.carousel-inner');
$innerCarousel.animate({
height: height
});
});
</code>
</div>
<div id="carouselExampleIndicators" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner shadow-sm rounded">
<div class="carousel-item active">
<img class="d-block w-100" src="assets/img/demo/slide1.jpg" alt="First slide">
<div class="carousel-caption d-none d-md-block">
<h5>Mountains, Nature Collection</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/img/demo/slide2.jpg" alt="Second slide">
<div class="carousel-caption d-none d-md-block">
<h5>Freedom, Sea Collection</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/img/demo/slide3.jpg" alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<h5>Living the Dream, Lost Island</h5>
</div>
</div>
</div>
</div>
<br/>
<script type="text/plain" class="language-markup"><div id="carouselExampleIndicators" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner shadow-sm rounded">
<div class="carousel-item active">
<img class="d-block w-100" src="assets/img/demo/slide1.jpg" alt="First slide">
<div class="carousel-caption d-none d-md-block">
<h5>Mountains, Nature Collection</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/img/demo/slide2.jpg" alt="Second slide">
<div class="carousel-caption d-none d-md-block">
<h5>Freedom, Sea Collection</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/img/demo/slide3.jpg" alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<h5>Living the Dream, Lost Island</h5>
</div>
</div>
</div>
</div></script>
<!----------------------------------------------------------------------
footer
------------------------------------------------------------------------>
<h2>Footer</h2>
<div class="alert alert-dark mb-5">
Options
<ul>
<li>Background: <code>bg-*color</code> (apply to <code>footer</code> and <code>svg</code> classes.</li>
<li>Text Color: <code>text-*color</code></li>
</ul>
</div>
<p><b>Dark Footer</b></p>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1440 126" style="enable-background:new 0 0 1440 126;" xml:space="preserve">
<path class="bg-black" d="M685.6,38.8C418.7-11.1,170.2,9.9,0,30v96h1440V30C1252.7,52.2,1010,99.4,685.6,38.8z"></path>
</svg>
<footer class="bg-black pb-5">
<div class="container">
<div class="row">
<div class="col-12 col-md mr-4">
<i class="fas fa-copyright text-white"></i>
<small class="d-block mt-3 mb-3 text-muted">© 2021 Anchor Bootstrap</small>
</div>
<div class="col-6 col-md">
<h5 class="mb-4 text-white">Features</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">Cool stuff</a></li>
<li><a class="text-muted" href="#">Random feature</a></li>
<li><a class="text-muted" href="#">Team feature</a></li>
<li><a class="text-muted" href="#">Stuff for developers</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5 class="mb-4 text-white">Resources</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">Resource</a></li>
<li><a class="text-muted" href="#">Resource name</a></li>
<li><a class="text-muted" href="#">Another resource</a></li>
<li><a class="text-muted" href="#">Final resource</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5 class="mb-4 text-white">Utilities</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">Business</a></li>
<li><a class="text-muted" href="#">Education</a></li>
<li><a class="text-muted" href="#">Government</a></li>
<li><a class="text-muted" href="#">Gaming</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5 class="mb-4 text-white">About</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">Team</a></li>
<li><a class="text-muted" href="#">Locations</a></li>
<li><a class="text-muted" href="#">Privacy</a></li>
<li><a class="text-muted" href="#">Terms</a></li>
</ul>
</div>
</div>
</div>
</footer>
<br>
<script type="text/plain" class="language-markup"><!-- dark footer -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1440 126" style="enable-background:new 0 0 1440 126;" xml:space="preserve">
<path class="bg-black" d="M685.6,38.8C418.7-11.1,170.2,9.9,0,30v96h1440V30C1252.7,52.2,1010,99.4,685.6,38.8z"></path>
</svg>
<footer class="bg-black pb-5">
<div class="container">
<div class="row">