Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Keep components accessible with correct roles and labels.
ARIA Roles in Components is easiest to learn by reading the example, changing it, and observing the result.
<div class="container py-4">
<div class="row g-3">
<div class="col-md-6">
<div class="card shadow-sm">
<div class="card-body">
<h2 class="h4 card-title">Bootstrap card</h2>
<p class="card-text">Responsive, accessible components out of the box.</p>
<button class="btn btn-primary">Start</button>
</div>
</div>
</div>
</div>
</div>Practice the ARIA Roles in Components example in a small scratch file, then explain what changed and why.