
Bootstrap 5 is the newest version of Bootstrap, which is the most powerful front-end HTML, CSS, and JavaScript framework for designing responsive, mobile-friendly websites.
Bootstrap 5.0 is a completely free framework.
Bootstrap 5.0 is faster and easier for web designing. With the help of Bootstrap, we can create a responsive, attractive, and mobile-friendly website. It includes HTML and CSS-based design templates for creating common user interface components like forms, buttons, navigations, dropdowns, alerts, modals, tabs, accordions, carousels, tooltips, and so on.
Bootstrap 5 supports the latest, stable releases of all major browsers and platforms. However, Internet Explorer 11 and down is not supported.
Copy the below CSS library link and paste it into your website <head>
Header section.
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
Many of the Bootstrap components require the use of JavaScript to function to work. Bootstrap uses its own javascript library. Copy-paste the JS library in your footer section.
There are two types of javascript libraries
Bundle – Include every Bootstrap JavaScript plugin and dependency with one of our two bundles. Both bootstrap.bundle.js
and bootstrap.bundle.min.js
include Popper for our tooltips and popovers.
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
Separate JS library: We can also use the separate-separate library on our website.
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
There are more things we can create with the help of Bootstrap.