Minimal Footer
A copy-paste footers component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
FootersHTMLCSSany framework
Copy into your project
HTML
<footer class="nuda-footer-minimal">
<span class="nuda-footer-minimal__brand">
<span class="nuda-footer-minimal__dot"></span>
NudaUI
</span>
<nav class="nuda-footer-minimal__nav">
<a href="#">Docs</a>
<a href="#">GitHub</a>
<a href="#">X</a>
</nav>
<span class="nuda-footer-minimal__meta">© 2025</span>
</footer>CSS
.nuda-footer-minimal {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 18px 22px;
background: rgba(255,255,255,.02);
border: 1px solid rgba(255,255,255,.06);
border-radius: 14px;
font-size: 13px;
color: #a0a0a8;
width: 100%;
max-width: 520px;
flex-wrap: wrap;
}
.nuda-footer-minimal__brand {
display: inline-flex;
align-items: center;
gap: 8px;
color: #fafafa;
font-weight: 600;
}
.nuda-footer-minimal__dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #e4ff54;
box-shadow: 0 0 12px #e4ff54;
animation: _fmpulse 2.4s ease-in-out infinite;
}
.nuda-footer-minimal__nav {
display: flex;
gap: 18px;
}
.nuda-footer-minimal__nav a {
color: inherit;
text-decoration: none;
position: relative;
transition: color .2s;
}
.nuda-footer-minimal__nav a::after {
content: '';
position: absolute;
left: 0;
bottom: -3px;
width: 0;
height: 1px;
background: #e4ff54;
transition: width .25s ease;
}
.nuda-footer-minimal__nav a:hover {
color: #fafafa;
}
.nuda-footer-minimal__nav a:hover::after {
width: 100%;
}
.nuda-footer-minimal__meta {
font-variant-numeric: tabular-nums;
}
@keyframes _fmpulse {
0%,100% {
opacity: .7;
}
50% {
opacity: 1;
transform: scale(1.15);
}
}
@media (prefers-reduced-motion:reduce) {
.nuda-footer-minimal__dot {
animation: none;
}
}
How to use Minimal Footer
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.