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"> <span class="badge badge-active">Active</span> <span class="badge badge-pending">Pending</span> <span class="badge badge-archived">Archived</span> </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; } .demo { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; } .badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 500; letter-spacing: 0.02em; } .badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; } .badge-active { background: #dcfce7; color: #16a34a; } .badge-active::before { background: #22c55e; } .badge-pending { background: #fef9c3; color: #a16207; } .badge-pending::before { background: #eab308; } .badge-archived { background: #f3f4f6; color: #6b7280; } .badge-archived::before { background: #9ca3af; }