Chic Neon 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>Chic Neon Card</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <style> body { margin: 0; font-family: Arial, sans-serif; background: linear-gradient(to right, #FF0084, #FF8C00); height: 100vh; display: flex; justify-content: center; align-items: center; } .chic-card { width: 300px; background: rgba(0, 0, 0, 0.3); border-radius: 15px; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); padding: 20px; text-align: center; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; } .chic-card:hover { transform: scale(1.05); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6); } .chic-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1)); opacity: 0.3; pointer-events: none; z-index: 0; } .chic-card-header { font-size: 1.8em; color: #fff; margin-bottom: 15px; position: relative; z-index: 1; } .chic-card-content { color: #fff; font-size: 1em; position: relative; z-index: 1; } .chic-card-icon { font-size: 2.2em; color: #FF0084; margin-bottom: 10px; } .chic-card-footer { margin-top: 20px; position: relative; z-index: 1; } .chic-card-button { background: linear-gradient(45deg, #FF0084, #FF8C00); border: none; border-radius: 7px; color: #fff; padding: 10px 22px; font-size: 1em; cursor: pointer; transition: background 0.3s; position: relative; z-index: 1; } .chic-card-button:hover { background: linear-gradient(45deg, #FF8C00, #FF0084); } .chic-card-button i { margin-right: 8px; } </style> </head> <body> <div class="chic-card"> <div class="chic-card-icon"> <i class="fas fa-bolt"></i> </div> <div class="chic-card-header">Chic Neon Card</div> <div class="chic-card-content"> Embrace the neon chic with this card design featuring bold colors and a stylish glass effect. Hover to see the neon glow. </div> <div class="chic-card-footer"> <button class="chic-card-button"> <i class="fas fa-play"></i> Play Now </button> </div> </div> </body> </html>