Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Build the minimal HTML page Bootstrap expects.
Bootstrap Starter Template 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 Starter Template example in a small scratch file, then explain what changed and why.