Fire 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>Fire Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #000; margin: 0; } .fire-button { position: relative; padding: 20px 40px; font-size: 18px; font-weight: bold; color: #fff; background: linear-gradient(45deg, #ff4500, #ff8c00); border: none; border-radius: 30px; cursor: pointer; outline: none; box-shadow: 0 4px 15px rgba(255, 69, 0, 0.75); transition: all 0.3s ease; } .fire-button:hover { background: linear-gradient(45deg, #ff8c00, #ff4500); box-shadow: 0 4px 25px rgba(255, 69, 0, 1); } .fire-button span { position: relative; z-index: 1; } </style> </head> <body> <button type="button" class="fire-button"> <span>Fire Effect</span> </button> </body> </html>