Glowing Styled Span - 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>Glowing Styled Span</title> <style> .glowing-span { font-size: 24px; font-weight: bold; display: inline-block; padding: 10px 20px; margin: 20px; background: linear-gradient(45deg, #00c6ff, #0072ff); color: white; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); cursor: pointer; text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); transition: box-shadow 0.3s ease; } .glowing-span:hover { box-shadow: 0 0 20px rgba(0, 198, 255, 0.8), 0 0 30px rgba(0, 114, 255, 0.8); } .glowing-span i { margin-right: 10px; animation: spin 3s linear infinite; } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } </style> </head> <body> <span class="glowing-span"> <i>💫</i> Glowing Text <i>💫</i> </span> </body> </html>