Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Build flexible content containers with headers, bodies, and footers.
Cards is easiest to learn by reading the example, changing it, and observing the result.
<div class="card" style="width: 18rem;">
<img src="/img/lesson.jpg" class="card-img-top" alt="Lesson cover">
<div class="card-body">
<h5 class="card-title">Bootstrap Cards</h5>
<p class="card-text">Flexible containers with header, body, and footer.</p>
<a href="#" class="btn btn-primary">Start lesson</a>
</div>
<div class="card-footer text-body-secondary">30 min</div>
</div>Practice the Cards example in a small scratch file, then explain what changed and why.