Stylish Pulse Button - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Stylish Pulse Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #444; margin: 0; } .pulse-button { padding: 20px 40px; font-size: 18px; font-weight: bold; color: #fff; background: #8e44ad; border: none; border-radius: 30px; cursor: pointer; outline: none; transition: all 0.3s ease; animation: pulse 1s infinite; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } } .pulse-button span { position: relative; z-index: 1; } </style> </head> <body> <button type="button" class="pulse-button"> <span>Stylish Pulse</span> </button> </body> </html>