Untitled
unknown
plain_text
5 months ago
1.9 kB
4
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Spotify Poster Template</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #fdf5f5; } .poster-container { width: 400px; padding: 20px; background: #ffffff; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); border-radius: 16px; text-align: center; } .poster-container img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 16px; } .song-title { font-size: 1.5em; font-weight: bold; color: #333; } .artist-name { font-size: 1.2em; color: #666; margin-bottom: 16px; } .spotify-bar { width: 100%; height: 50px; background: url('spotify-bar-placeholder.png') no-repeat center; background-size: contain; margin-bottom: 20px; } .upload-area { margin: 20px 0; padding: 10px; border: 2px dashed #ccc; border-radius: 8px; background-color: #fafafa; color: #999; } </style> </head> <body> <div class="poster-container"> <div class="upload-area">Add your photo here</div> <div class="song-title">Die with a Smile</div> <div class="artist-name">Bruno Mars</div> <div class="spotify-bar"></div> </div> </body> </html>
Editor is loading...
Leave a Comment