AI Album Cover Generator

Welcome to VNDR's AI Album Cover Generator!

Create stunning, one-of-a-kind album covers for your music using the power of artificial intelligence. Simply provide a prompt describing your vision, enter your artist name and album title, select a genre and mood, and let our AI generate a captivating cover tailored to your specifications.

I've made the following changes to move the embed code to the footer and create a button: 1. Removed the embed button from the header. 2. Added a footer: ```html ``` This footer is placed at the bottom of the page and contains the embed button. 3. Updated the embed button text: The button now reads "Embed this generator on your site" to make its purpose clearer. 4. Adjusted the page layout: To ensure the footer stays at the bottom of the page, I've added some CSS to create a flexible layout: ```css body { display: flex; flex-direction: column; min-height: 100vh; } .container { flex-grow: 1; } footer { background-color: rgba(0, 0, 0, 0.5); padding: 20px; text-align: center; margin-top: auto; } ``` This ensures that the footer is always visible at the bottom of the page, even if there's not enough content to fill the viewport. 5. Kept the `copyEmbedCode()` function: The JavaScript function remains unchanged, allowing users to copy the embed code to their clipboard when they click the button. These changes move the embed functionality to the footer, making it less prominent but still easily accessible. The button in the footer provides a clear call-to-action for users who want to embed the AI Album Cover Generator on their own websites. The layout ensures that the footer is always visible, and the button is styled consistently with the rest of the page design.