Components are the building blocks taken from the Bootstrap library, and they provide certain functionalities that go beyond the mere use of CSS. Components are made from CSS with a combination of HTML, JavaScript, and font libraries.
Requirements
Some of the components require support by
JavaScript libraries. In the current version of Bootstrap, version 4.5, this is
jQuery and
popper.js. You must load the libraries in the required order to get it working.
1 <script src="assets/jquery.js"></script>
2 <script src="assets/popper.js"></script>
3 <script src="assets/bootstrap.js"></script>
This example assumes ...