Breadcrumbs
A <nav> with an ordered list of links showing
the current page's position in a hierarchy. The separators are
drawn with ::after, no extra markup needed.
Default
Mark the current page with aria-current="page" instead
of a link.
<nav aria-label="Breadcrumb">
<ol>
<li><a href="/">Home</a></li>
<li><a href="/products">Products</a></li>
<li><a href="/products/electronics">Electronics</a></li>
<li aria-current="page">Laptop</li>
</ol>
</nav>