FREE CSS COMPONENT
Buttons
Buttons are one of the smallest UI primitives, but consistent states matter across a product.
Live preview
HTML
<button class="demo-button" type="button">Primary action</button> <button class="demo-button alt" type="button">Secondary</button>
CSS
.demo-button{display:inline-flex;align-items:center;justify-content:center;padding:12px 20px;border:1px solid #111;border-radius:5px;background:#111;color:#fff;font:600 14px/1.2 Inter,sans-serif;cursor:pointer}.demo-button:hover{opacity:.88}.demo-button:focus-visible{outline:3px solid #999;outline-offset:2px}.demo-button.alt{background:#fff;color:#111}