Gradient Bubble Label - 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>Gradient Bubble Label</title> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #f5f5f5; font-family: 'Poppins', sans-serif; margin: 0; } .bubble-label { position: relative; padding: 15px 30px; font-size: 1.2rem; font-weight: 600; color: #fff; background: linear-gradient(135deg, #f093fb, #f5576c); border-radius: 50px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); animation: bubble 2s infinite; } @keyframes bubble { 0%, 100% { transform: translateY(0); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); } 50% { transform: translateY(-10px); box-shadow: 0 25px 35px rgba(0, 0, 0, 0.2); } } </style> </head> <body> <div class="bubble-label">Gradient Bubble Label</div> </body> </html>