Untitled
unknown
plain_text
2 months ago
1.5 kB
3
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Board Game Card Template</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f4f4f4; } .card { width: 250px; height: 350px; background: white; border-radius: 15px; box-shadow: 3px 3px 10px rgba(0,0,0,0.2); padding: 20px; text-align: center; display: flex; flex-direction: column; justify-content: space-between; } .title { font-size: 20px; font-weight: bold; text-transform: uppercase; } .image-placeholder { height: 150px; background: #ddd; border-radius: 10px; display: flex; justify-content: center; align-items: center; font-size: 14px; color: #666; } .description { font-size: 14px; } </style> </head> <body> <div class="card"> <div class="title">Card Title</div> <div class="image-placeholder">Image Here</div> <div class="description">Game instructions or effect goes here.</div> </div> </body> </html>
Editor is loading...
Leave a Comment