Element Armory
Product
Features
Pricing
Examples
Add to Chrome - It's
Free
Copy HTML
Copy CSS
Copy Prompt
Capture your own elements →
Add to Chrome - It's
Free
HTML
<nav class="nav"> <div class="nav-inner"> <a class="nav-logo" href="#"> <div class="logo-mark"></div> Acme </a> <div class="nav-links"> <a href="#" class="nav-link">Product</a> <a href="#" class="nav-link">Pricing</a> <a href="#" class="nav-link">Docs</a> <a href="#" class="nav-link">Blog</a> </div> <a href="#" class="nav-cta">Get Started</a> </div> </nav>
CSS
* { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: system-ui, -apple-system, sans-serif; background: #f8fafc; min-height: 100vh; } .nav { background: #ffffff; border-bottom: 1px solid #e5e7eb; } .nav-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; height: 56px; display: flex; align-items: center; gap: 32px; } .nav-logo { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: #111827; text-decoration: none; flex-shrink: 0; } .logo-mark { width: 24px; height: 24px; background: #3b82f6; border-radius: 6px; } .nav-links { display: flex; gap: 4px; flex: 1; } .nav-link { text-decoration: none; color: #6b7280; font-size: 14px; font-weight: 500; padding: 6px 10px; border-radius: 6px; transition: color 150ms, background 150ms; } .nav-link:hover { color: #111827; background: #f3f4f6; } .nav-cta { text-decoration: none; background: #3b82f6; color: #fff; border-radius: 7px; padding: 7px 16px; font-size: 13px; font-weight: 600; flex-shrink: 0; transition: background 150ms; } .nav-cta:hover { background: #2563eb; }