Untitled
<!DOCTYPE html> <html> <head> <style> body { font-family: Arial, sans-serif; } .id-badge { width: 300px; height: 450px; border: 2px solid black; border-radius: 15px; padding: 10px; box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); background-color: #f4f4f4; } .id-badge-header { text-align: center; font-size: 18px; font-weight: bold; margin-bottom: 10px; } .hero-photo { width: 100%; height: 150px; background-color: #ddd; border: 2px dashed gray; margin-bottom: 10px; text-align: center; line-height: 150px; font-size: 14px; color: gray; } .hero-details { font-size: 14px; } .hero-details .label { font-weight: bold; } .hero-details p { margin: 5px 0; } .badge-footer { text-align: center; font-size: 12px; color: gray; margin-top: 20px; } </style> </head> <body> <div class="id-badge"> <div class="id-badge-header">Superhero ID Badge</div> <div class="hero-photo">Hero Mug Shot</div> <div class="hero-details"> <p><span class="label">Hero Name:</span> ____________________</p> <p><span class="label">Superpower:</span> ____________________</p> <p><span class="label">Alias:</span> ____________________</p> <p><span class="label">Mission:</span> ____________________</p> </div> <div class="badge-footer">Certified Hero in Training</div> </div> </body> </html>
Leave a Comment