Language & Region Footer
A copy-paste footers component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
FootersHTMLCSSany framework
Copy into your project
HTML
<!-- Language & Region Footer -->
<footer class="nuda-ft2-locale-select">
<span class="nuda-ft2-locale-select__brand">NudaUI</span>
<div class="nuda-ft2-locale-select__field">
<svg class="nuda-ft2-locale-select__globe" aria-hidden="true" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6">
<circle cx="12" cy="12" r="9" />
<path d="M3 12h18M12 3c2.5 2.7 2.5 15.3 0 18M12 3c-2.5 2.7-2.5 15.3 0 18" />
</svg>
<label for="ft2ls-lang" class="nuda-ft2-locale-select__sr">Language and region</label>
<select id="ft2ls-lang" class="nuda-ft2-locale-select__select">
<option value="en-US" selected>English (US)</option>
<option value="es-ES">Español (ES)</option>
<option value="fr-FR">Français (FR)</option>
<option value="ja-JP">日本語 (JP)</option>
</select>
<svg class="nuda-ft2-locale-select__chevron" aria-hidden="true" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M6 9l6 6 6-6" />
</svg>
</div>
<span class="nuda-ft2-locale-select__meta">© 2025</span>
</footer>CSS
.nuda-ft2-locale-select {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
flex-wrap: wrap;
padding: 14px 18px;
background: rgba(255,255,255,.02);
border: 1px solid rgba(255,255,255,.08);
border-radius: 12px;
width: 100%;
max-width: 340px;
color: #a0a0a8;
font-size: 12px;
}
.nuda-ft2-locale-select__brand {
color: #fafafa;
font-weight: 600;
}
.nuda-ft2-locale-select__field {
position: relative;
display: inline-flex;
align-items: center;
gap: 6px;
padding: 5px 10px;
border: 1px solid rgba(255,255,255,.12);
border-radius: 8px;
background: #141414;
transition: border-color .2s;
}
.nuda-ft2-locale-select__field:hover,.nuda-ft2-locale-select__field:focus-within {
border-color: #e4ff54;
}
.nuda-ft2-locale-select__globe {
width: 14px;
height: 14px;
flex-shrink: 0;
color: #e4ff54;
animation: _nuda-ft2LocaleSelectGlobe 14s linear infinite;
}
.nuda-ft2-locale-select__sr {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border: 0;
}
.nuda-ft2-locale-select__select {
appearance: none;
background: transparent;
border: 0;
color: #fafafa;
font-size: 12px;
padding-right: 4px;
cursor: pointer;
}
.nuda-ft2-locale-select__select:focus-visible {
outline: 2px solid #e4ff54;
outline-offset: 2px;
border-radius: 4px;
}
.nuda-ft2-locale-select__chevron {
width: 12px;
height: 12px;
flex-shrink: 0;
color: #777;
transition: transform .2s;
}
.nuda-ft2-locale-select__field:hover .nuda-ft2-locale-select__chevron {
animation: _nuda-ft2LocaleSelectChevron .5s ease;
}
.nuda-ft2-locale-select__meta {
font-variant-numeric: tabular-nums;
color: #777;
}
@keyframes _nuda-ft2LocaleSelectGlobe {
to {
transform: rotate(360deg);
}
}
@keyframes _nuda-ft2LocaleSelectChevron {
0% {
transform: translateY(0);
}
50% {
transform: translateY(2px);
}
100% {
transform: translateY(0);
}
}
@media (prefers-reduced-motion:reduce) {
.nuda-ft2-locale-select__globe {
animation: none;
}
.nuda-ft2-locale-select__field:hover .nuda-ft2-locale-select__chevron {
animation: none;
}
}
How to use Language & Region 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.