Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Add Bootstrap to a page and confirm the styles load.
Get Started with Bootstrap 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 Get Started with Bootstrap example in a small scratch file, then explain what changed and why.