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
<div class="demo"> <button class="btn">Get Started</button> </div>
CSS
* { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: system-ui, -apple-system, sans-serif; background: #f8fafc; display: flex; align-items: center; justify-content: center; min-height: 100vh; } .btn { background: #3b82f6; color: #fff; border: none; border-radius: 8px; padding: 12px 24px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 150ms, transform 100ms; font-family: inherit; letter-spacing: 0.01em; } .btn:hover { background: #2563eb; } .btn:active { background: #1d4ed8; transform: translateY(1px); } .btn:focus-visible { outline: 2px solid #3b82f6; outline-offset: 3px; }