Cool Buttons with Code
<button class="btn-cool">Cool Button</button> <style> .btn-cool { padding: 12px 24px; background: linear-gradient(to right, #ff416c, #ff4b2b); color: white; font-size: 16px; border: none; border-radius: 5px; cursor: pointer; transition: 0.3s; } .btn-cool:hover { transform: scale(1.1); } </style>
comment 0 comments
more_vert