Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Show the page hierarchy with a breadcrumb trail.
Breadcrumb is easiest to learn by reading the example, changing it, and observing the result.
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#">Courses</a></li>
<li class="breadcrumb-item active" aria-current="page">Bootstrap</li>
</ol>
</nav>Practice the Breadcrumb example in a small scratch file, then explain what changed and why.