Highly Styled Professional 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>Highly Styled Professional Link</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: linear-gradient(135deg, #f3ec78, #af4261); font-family: 'Arial', sans-serif; margin: 0; } .styled-link { position: relative; display: inline-block; font-size: 24px; text-decoration: none; color: #fff; padding: 12px 24px; background: #6a11cb; background: -webkit-linear-gradient(to right, #2575fc, #6a11cb); background: linear-gradient(to right, #2575fc, #6a11cb); border-radius: 50px; box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; overflow: hidden; } .styled-link:hover { background: #fc2575; background: -webkit-linear-gradient(to right, #6a11cb, #fc2575); background: linear-gradient(to right, #6a11cb, #fc2575); box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3); transform: translateY(-7px); } .styled-link .icon { margin-right: 10px; transition: all 0.3s ease; } .styled-link:hover .icon { transform: rotate(360deg); } .styled-link::before, .styled-link::after { content: ''; position: absolute; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.1); top: -100%; left: 0; transition: all 0.3s ease; border-radius: 50px; } .styled-link:hover::before { top: 0; height: 50%; } .styled-link:hover::after { bottom: 0; top: auto; height: 50%; } @keyframes pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.7); } 70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 105, 180, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 105, 180, 0); } } .styled-link:active { animation: pulse 1s; } </style> </head> <body> <a href="#" class="styled-link"> <span class="icon">🚀</span> Professional Link </a> <script> document.querySelector('.styled-link').addEventListener('click', function(event) { event.preventDefault(); alert('Link clicked!'); }); </script> </body> </html>