bootstrap 5 cdn

To include Bootstrap 5 CDN in your webpage, you can use the following code snippet:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Your Webpage</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
</head>
<body>
  <!-- Your webpage content here -->

  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

Make sure to replace "Your Webpage" with the desired title for your webpage. This code includes the Bootstrap 5 CSS and JavaScript files from the CDN, allowing you to use Bootstrap's styling and functionality in your webpage.