Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content="Welcome to our cozy coffee shop. Enjoy premium brews and pastries in a relaxing atmosphere."> | |
| <title>Cozy Coffee Shop</title> | |
| <link rel="stylesheet" href="assets/css/styles.css"> | |
| </head> | |
| <body> | |
| <header> | |
| <div class="container"> | |
| <h1 class="logo">Cozy Coffee</h1> | |
| <nav> | |
| <ul> | |
| <li><a href="#home">Home</a></li> | |
| <li><a href="#menu">Menu</a></li> | |
| <li><a href="#about">About</a></li> | |
| <li><a href="#contact">Contact</a></li> | |
| </ul> | |
| </nav> | |
| <p class="built-with">Built with <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank">anycoder</a></p> | |
| </div> | |
| </header> | |
| <main> | |
| <section id="home" class="hero"> | |
| <div class="container"> | |
| <h2>Welcome to Cozy Coffee</h2> | |
| <video controls autoplay muted loop playsinline style="max-width:100%; height:auto; border-radius:8px; box-shadow:0 4px 8px rgba(0,0,0,0.1)" onerror="this.style.display='none'; console.error('Animation video failed to load')"><source src="https://huggingface.co/datasets/akhaliq/anycoder-media/resolve/main/video/20250921_201704_4ede355b_wan_animate_result.mp4" type="video/mp4" /><p style="text-align: center; color: #666;">Your browser does not support the video tag.</p></video> | |
| <p>Indulge in our expertly crafted coffees and fresh pastries. A perfect spot to unwind.</p> | |
| </div> | |
| </section> | |
| <section id="menu" class="menu"> | |
| <div class="container"> | |
| <h2>Our Menu</h2> | |
| <div class="menu-grid"> | |
| <div class="item"> | |
| <h3>Espresso</h3> | |
| <p>$3.50</p> | |
| </div> | |
| <div class="item"> | |
| <h3>Latte</h3> | |
| <p>$4.50</p> | |
| </div> | |
| <div class="item"> | |
| <h3>Cappuccino</h3> | |
| <p>$4.00</p> | |
| </div> | |
| <div class="item"> | |
| <h3>Croissant</h3> | |
| <p>$2.50</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <section id="about" class="about"> | |
| <div class="container"> | |
| <h2>About Us</h2> | |
| <p>Established in 2020, Cozy Coffee is your neighborhood haven for quality coffee and friendly vibes. We source beans from local roasters.</p> | |
| </div> | |
| </section> | |
| <section id="contact" class="contact"> | |
| <div class="container"> | |
| <h2>Contact</h2> | |
| <p>123 Brew St, Cityville | (555) 123-4567 | info@cozycoffee.com</p> | |
| </div> | |
| </section> | |
| </main> | |
| <footer> | |
| <div class="container"> | |
| <p>© 2023 Cozy Coffee. All rights reserved.</p> | |
| </div> | |
| </footer> | |
| <script src="assets/js/script.js"></script> | |
| </body> | |
| </html> |