Cosmic Journey 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>Cosmic Journey Card</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background: linear-gradient(135deg, #1e3c72 0%, #2a5298 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/1e3c72') 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: #2a5298; 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">Cosmic Journey</h2> <p class="card-description">A card inspired by the mysteries of the cosmos.</p> </div> <div class="card-footer"> <a href="#">Explore</a> <span class="icon">🚀</span> </div> </div> </body> </html>