Emoji Bounce Link - 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>Emoji Bounce Link</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f4f4f4; font-family: Arial, sans-serif; } .link-emoji-bounce { display: inline-block; padding: 15px 30px; font-size: 18px; color: #fff; text-decoration: none; background-color: #ff5722; border-radius: 30px; transition: all 0.4s ease; } .link-emoji-bounce:hover { animation: bounce 0.6s infinite alternate; } @keyframes bounce { to { transform: translateY(-10px); } } </style> </head> <body> <a href="#" class="link-emoji-bounce">😊 Bounce Link</a> </body> </html>