Breadcrumbs
The Breadcrumbs component provides users with a clear sense of where they are within a site with multiple levels and helps them understand the overall site structure.
When not to use
Do not use breadcrumbs within questionnaires, calculators, or account setup flows.
Usage guidance
Always place breadcrumbs outside of the hero section, directly below.
Breadcrumbs example:
HTML
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item active" aria-current="page">Home</li>
</ol>
</nav>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Library</li>
</ol>
</nav>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#">Library</a></li>
<li class="breadcrumb-item active" aria-current="page">Data</li>
</ol>
</nav>