Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content="Stellar Verse: Generate romantic poems with beautiful dynamic backgrounds. Express your feelings through poetry."> | |
| <title>Stellar Verse - Romantic Poetry Generator</title> | |
| <link rel="stylesheet" href="assets/css/styles.css"> | |
| <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;600&display=swap" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <header class="header"> | |
| <h1>Stellar Verse</h1> | |
| <div class="header-link"> | |
| <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" rel="noopener noreferrer">Built with anycoder</a> | |
| </div> | |
| </header> | |
| <main class="main-content"> | |
| <section class="poem-generator"> | |
| <h2>Generate Your Romantic Poem</h2> | |
| <div class="input-group"> | |
| <label for="poem-prompt" class="visually-hidden">Enter themes or keywords for your poem</label> | |
| <input type="text" id="poem-prompt" placeholder="Enter themes (love, moon, heart...)"> | |
| <button id="generate-btn" aria-label="Generate poem">Generate Poem</button> | |
| </div> | |
| <div class="background-controls"> | |
| <button id="prev-bg" aria-label="Previous background">≺</button> | |
| <button id="next-bg" aria-label="Next background">≻</button> | |
| <select id="bg-select" aria-label="Select background"> | |
| <option value="autumn">Autumn Leaves</option> | |
| <option value="stars">Starry Night</option> | |
| <option value="hearts">Romantic Hearts</option> | |
| </select> | |
| </div> | |
| </section> | |
| <section class="poem-display"> | |
| <div class="poem-container" id="poem-container"> | |
| <p class="poem-text" id="poem-text">Your romantic poem will appear here...</p> | |
| <div class="poem-author">— Stellar Verse</div> | |
| </div> | |
| </section> | |
| </main> | |
| <footer class="footer"> | |
| <p>© 2023 Stellar Verse. All rights reserved.</p> | |
| </footer> | |
| <script src="assets/js/script.js"></script> | |
| </body> | |
| </html> |