Input
Output
<!DOCTYPE html> <html> <head> <style> .fancy-button { background-color: #007bff; color: white; padding: 10px 20px; border: none; transition: all 0.3s ease; border-radius: 5px; } .fancy-button:hover { background-color: #0056b3; transform: scale(1.1); } </style> </head> <body> <button class="fancy-button">Hover Me</button> </body> </html>