coffee-shop-new / index.html
akhaliq's picture
akhaliq HF Staff
Upload folder using huggingface_hub
37996a6 verified
<!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 Bean & Brew Coffee Shop">
<title>Bean & Brew Coffee Shop</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Bean & Brew</div>
<nav>
<ul>
<li><a href="#menu">Menu</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>Artisan Coffee, Crafted Daily</h1>
<p>Experience the perfect blend of flavor and atmosphere</p>
<div class="video-container">
<video controls autoplay muted loop playsinline style="max-width: 100%; height: auto; border-radius: 8px; margin: 10px 0; display: block;" onloadstart="this.style.backgroundColor='#f0f0f0'" onerror="this.style.display='none'; console.error('Video failed to load')"><source src="https://huggingface.co/datasets/akhaliq/anycoder-media/resolve/main/video/20250824_172218_a5e3bd97_text_to_video_result.mp4" type="video/mp4" /><p style="text-align: center; color: #666;">Your browser does not support the video tag.</p></video>
</div>
</section>
<section id="menu" class="menu">
<h2>Our Coffee</h2>
<div class="menu-items">
<div class="menu-item">
<h3>Espresso</h3>
<p>Rich and bold</p>
</div>
<div class="menu-item">
<h3>Cappuccino</h3>
<p>Creamy perfection</p>
</div>
<div class="menu-item">
<h3>Cold Brew</h3>
<p>Smooth and refreshing</p>
</div>
</div>
</section>
<section id="about" class="about">
<h2>About Us</h2>
<p>Founded in 2023, Bean & Brew is dedicated to bringing you the finest coffee experience using locally roasted beans and traditional brewing methods.</p>
</section>
<section id="contact" class="contact">
<h2>Visit Us</h2>
<p>123 Coffee Lane, Brew City</p>
<p>Open Daily: 7am - 8pm</p>
</section>
</main>
<footer>
<p>&copy; 2023 Bean & Brew. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>