Logo Luan Morina
What is Bootstrap and how you can use it?

Bootstrap is a widely used, free, and robust frontend toolkit that offers a wealth of features for building responsive and modern webpages. Here's how you can start using it:

  • Download Bootstrap: Get the files directly from the official Bootstrap website.
  • Use a CDN (Content Delivery Network): Include Bootstrap in your project by linking to the files hosted on a CDN. This approach can improve load times and ensure you're always using the latest version.

Example

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap Page</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
<body>
<h1>Hello, world!</h1>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>
   What is Bootstrap