Breadcrumb

A type of navigation menu used to provide a list of links based on current page within the site hierarchy, allowing users to visit previous pages from the current page.

<nav aria-label="breadcrumb" class="mzp-c-breadcrumb">
  <ol class="mzp-c-breadcrumb-list">
    <li class="mzp-c-breadcrumb-item">
      <a href="#">Parent page</a>
    </li>
    <li aria-current="page" class="mzp-c-breadcrumb-item">
      Child page
    </li>
  </ol>
</nav>

Notes

  • Use a <ol> nested within a <nav> to use semantic HTML and structure.
  • Use the .mzp-t-dark options to use dark mode.