Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Know the differences between Bootstrap 5, 4, and older releases.
Bootstrap Versions is easiest to learn by reading the example, changing it, and observing the result.
<!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/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<h1 class="m-4">Hello, Bootstrap!</h1>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>Practice the Bootstrap Versions example in a small scratch file, then explain what changed and why.