Glowing Pulse Div - 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 Pulse Div</title> <style> body { background-color: #2c3e50; font-family: 'Arial', sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .glowing-div { background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(52,152,219,1) 100%); color: black; border-radius: 50%; width: 200px; height: 200px; display: flex; justify-content: center; align-items: center; text-align: center; box-shadow: 0 0 20px rgba(52,152,219,0.5); animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { box-shadow: 0 0 20px rgba(52, 152, 219, 0.5); } 50% { box-shadow: 0 0 40px rgba(52, 152, 219, 1); } } </style> </head> <body> <div class="glowing-div"> <div>🚀 Glow!</div> </div> </body> </html>