Serene Tranquility 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>Serene Tranquility Card</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); font-family: 'Arial', sans-serif; } .card { width: 300px; height: 400px; background: white; border-radius: 15px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); overflow: hidden; position: relative; } .card-header { height: 150px; background: url('https://via.placeholder.com/300x150/89f7fe') center/cover no-repeat; } .card-body { padding: 20px; } .card-title { font-size: 24px; font-weight: bold; margin: 0; } .card-description { font-size: 14px; color: #777; margin-top: 10px; } .card-footer { margin-top: 20px; display: flex; justify-content: space-between; align-items: center; } .card-footer a { text-decoration: none; color: #66a6ff; font-weight: bold; margin-left: 30px; } .card-footer .icon { font-size: 24px; margin-right: 30px; } </style> </head> <body> <div class="card"> <div class="card-header"></div> <div class="card-body"> <h2 class="card-title">Serene Tranquility</h2> <p class="card-description">A card that brings a sense of calm and peace.</p> </div> <div class="card-footer"> <a href="#">Relax</a> <span class="icon">🧘♂️</span> </div> </div> </body> </html>