3D Button

🌐 3D Button


        
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>3D Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background: #000000; font-family: Arial, sans-serif; } .glowing-button { position: relative; display: inline-block; padding: 15px 40px; font-size: 18px; font-weight: bold; color: #fff; text-transform: uppercase; text-align: center; text-decoration: none; background: linear-gradient(145deg, #0d6efd, #6610f2); border: none; border-radius: 12px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5), 0px 0px 20px rgba(13, 110, 253, 0.8), inset 0px 0px 5px rgba(255, 255, 255, 0.2); cursor: pointer; transition: all 0.3s ease; } .glowing-button:hover { box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.6), 0px 0px 25px rgba(13, 110, 253, 1), 0px 0px 40px rgba(102, 16, 242, 1), inset 0px 0px 8px rgba(255, 255, 255, 0.3); transform: translateY(-3px); } .glowing-button:active { transform: translateY(3px); box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4), 0px 0px 15px rgba(13, 110, 253, 0.8), inset 0px 0px 3px rgba(255, 255, 255, 0.2); } </style> </head> <body> <button class="glowing-button">Click Me</button> </body> </html>

🔍 Output Preview