HTMLify
Beautiful Card
Views: 492 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | <!DOCTYPE html> <html> <head> <style> body { font-family: 'Arial', sans-serif; display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; background-color: #f4f4f4; } .card { width: 300px; background-color: #fff; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); overflow: hidden; } .card-header { background-color: #3498db; color: #fff; padding: 20px; text-align: center; font-size: 1.5em; } .card-body { padding: 20px; } .card-footer { background-color: #3498db; color: #fff; text-align: center; padding: 10px; } </style> </head> <body> <div class="card"> <div class="card-header"> Beautiful Card </div> <div class="card-body"> <p>This is a simple and beautifully styled card :)</p> </div> <div class="card-footer"> © 2023 Cody </div> </div> </body> </html> |