Bootstrap 4.1.3

Build responsive, mobile-first projects on the web with the world's most popular front-end component library.

CSS

Bootstrap CSS link is included inside src/scss/style.scss file.

@import "../../vendors/bootstrap/dist/css/bootstrap.min.css";

JS

Bootstrap components require the use of JavaScript to function. Specifically, they require jQuery, Popper.js.It included inside all HTML pages.

<!-- jQuery -->
<script src="vendors/jquery/dist/jquery.min.js"></script>

<!-- Bootstrap Core JavaScript -->
<script src="vendors/popper.js/dist/umd/popper.min.js"></script>
<script src="vendors/bootstrap/dist/js/bootstrap.min.js"></script>

Last updated