Neon Glow Card - 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>Neon Glow Card</title> <style> @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap'); @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css'); body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #111; font-family: 'Quicksand', sans-serif; } .card { background: #222; border-radius: 15px; color: #fff; max-width: 350px; overflow: hidden; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); text-align: center; transition: transform 0.3s; } .card:hover { transform: scale(1.05); } .card-header { padding: 20px; font-size: 1.5em; position: relative; } .card-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border: 2px solid #0f0; border-radius: 15px; animation: neon 1.5s infinite alternate; } @keyframes neon { from { box-shadow: 0 0 10px #0f0; } to { box-shadow: 0 0 20px #0f0; } } .card-body { padding: 20px; } .card-body p { margin: 10px 0; font-size: 1.2em; } .card-footer { padding: 15px; background: rgba(255, 255, 255, 0.1); } .card-footer button { background: #0f0; color: #000; border: none; padding: 10px 20px; border-radius: 25px; cursor: pointer; transition: background 0.3s; } .card-footer button:hover { background: #00ff00cc; } </style> </head> <body> <div class="card"> <div class="card-header"> Neon Glow Card </div> <div class="card-body"> <p>Futuristic design with neon glow effects.</p> <p>Ideal for tech and nightlife projects.</p> </div> <div class="card-footer"> <button type="button">Get Started</button> </div> </div> </body> </html>