Spaces:
Running
Running
File size: 3,283 Bytes
e73702a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <!DOCTYPE html>
<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> |