Icon Breadcrumb
A copy-paste breadcrumbs component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
BreadcrumbsHTMLCSSany framework
Copy into your project
HTML
<nav class="nuda-bci">
<a class="nuda-bci__link" href="#"><span class="nuda-bci__home">⌂</span></a>
<span class="nuda-bci__sep">›</span>
<a class="nuda-bci__link" href="#">Library</a>
<span class="nuda-bci__sep">›</span>
<span class="nuda-bci__cur">Albums</span>
</nav>CSS
.nuda-bci {
display: inline-flex;
align-items: center;
gap: .45rem;
font-size: .8rem;
}
.nuda-bci__link {
color: #999;
cursor: pointer;
}
.nuda-bci__link:hover {
color: #e4ff54;
}
.nuda-bci__home {
font-size: 1rem;
}
.nuda-bci__sep {
color: #555;
}
.nuda-bci__cur {
color: #fafafa;
font-weight: 600;
}
How to use Icon Breadcrumb
Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.
Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.