Neumorphism Cards - 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>Neumorphism Cards</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> <style> body { font-family: 'Arial', sans-serif; background: #e0e0e0; display: flex; flex-wrap: wrap; justify-content: center; padding: 20px; } .card-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; } .neumorphic-card { width: 300px; background: #e0e0e0; border-radius: 15px; box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff; padding: 20px; text-align: center; transition: transform 0.3s; } .neumorphic-card:hover { transform: translateY(-10px); } .neumorphic-card .icon { font-size: 3em; color: #ff6b6b; margin-bottom: 10px; } .neumorphic-card h3 { margin: 10px 0; font-size: 1.5em; } .neumorphic-card p { color: #666; } .neumorphic-card button { margin-top: 10px; padding: 10px 20px; border: none; border-radius: 5px; background: #ff6b6b; color: white; cursor: pointer; transition: background 0.3s; } .neumorphic-card button:hover { background: #ff4b4b; } </style> </head> <body> <div class="card-container"> <div class="neumorphic-card"> <i class="fas fa-user-friends icon"></i> <h3>Networking Event</h3> <p>Connect with professionals in your industry.</p> <button>Join Now</button> </div> <div class="neumorphic-card"> <i class="fas fa-code icon"></i> <h3>Hackathon</h3> <p>Showcase your coding skills in a competitive environment.</p> <button>Join Now</button> </div> <div class="neumorphic-card"> <i class="fas fa-paint-brush icon"></i> <h3>Art Workshop</h3> <p>Unleash your creativity in our art workshops.</p> <button>Join Now</button> </div> </div> <script src="../prevent.js"></script> </body> </html>