Floating Button 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>Floating Button Link</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #282c34; font-family: 'Arial', sans-serif; margin: 0; } .floating-link { display: inline-block; font-size: 24px; text-decoration: none; color: #fff; padding: 12px 24px; background-color: #61dafb; border-radius: 50px; box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; transform: translateY(0); } .floating-link:hover { box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3); transform: translateY(-10px); } </style> </head> <body> <a href="#" class="floating-link">Floating Button Link</a> </body> </html>