Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Use button variants, sizes, and states.
Buttons is easiest to learn by reading the example, changing it, and observing the result.
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-outline-secondary">Secondary</button>
<button type="button" class="btn btn-success btn-lg">Large</button>
<button type="button" class="btn btn-danger btn-sm">Small</button>
<button type="button" class="btn btn-primary" disabled>Disabled</button>Practice the Buttons example in a small scratch file, then explain what changed and why.