Open In App

What is the Latest Version of Bootstrap ?

Last Updated : 16 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

The latest stable version of Bootstrap is Bootstrap 5.3.x, released in October 2023. It offers a complete redesign, improved performance, and modern features compared to older versions.

Include Bootstrap’s CSS and JS. Place the <link> tag in the <head> for our CSS, and the <script> tag for our JavaScript bundle (including Popper for positioning dropdowns, poppers, and tooltips) before the closing </body>.

Approach

  • Include Bootstrap CSS and JavaScript files in your HTML.
  • Use utility classes for styling and components.
  • Leverage JavaScript plugins for interactive elements.

Example: Illustration of the basic structure of Bootstrap with the latest version of CDN links.

HTML




<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport"
          content="width=device-width, initial-scale=1">
    <title>Bootstrap5 Template with CDN Links</title>
    <link href=
          rel="stylesheet" integrity=
"sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
          crossorigin="anonymous">
  </head>
  <body>
    <h1>GeeksforGeeks</h1>
    <script src=
            integrity=
"sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
            crossorigin="anonymous">
    </script>
  </body>
</html>


Features:

  • Mobile-first design: Prioritizes mobile responsiveness for optimal user experience on all devices.
  • Utility classes: Extensive set of classes for rapid styling without writing custom CSS.
  • Components: Pre-built UI components like buttons, forms, cards, and navigation.
  • JavaScript plugins: Optional plugins for tooltips, modals, popovers, and more.
  • Dark mode support: Easily switch between light and dark themes for accessibility and preference.


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads