Futuristic Hologram 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>Futuristic Hologram 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: #1d1d1d; font-family: 'Poppins', sans-serif; margin: 0; } .hologram-label { position: relative; padding: 15px 30px; font-size: 1.2rem; font-weight: 600; color: #0ff; text-transform: uppercase; letter-spacing: 2px; background: rgba(0, 255, 255, 0.1); border: 2px solid #0ff; border-radius: 25px; box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #0ff; animation: hologram 2s infinite; } @keyframes hologram { 0%, 100% { box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #0ff; } 50% { box-shadow: 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #0ff, 0 0 50px #0ff; } } </style> </head> <body> <div class="hologram-label">Futuristic Hologram Label</div> </body> </html>