Spaces:
Running
Running
File size: 5,951 Bytes
59f9cc6 |
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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anycoder Coffee Shop</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
color: #333;
background-color: #f5f5f5;
line-height: 1.6;
}
header {
background-color: #5d4037;
color: white;
padding: 1rem;
text-align: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.hero {
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1554118811-1e0d582dbf1d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
height: 60vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 0.5rem;
}
.hero p {
font-size: 1.5rem;
max-width: 600px;
}
.menu-section {
padding: 3rem 1rem;
max-width: 1200px;
margin: 0 auto;
}
.menu-section h2 {
text-align: center;
margin-bottom: 2rem;
font-size: 2.5rem;
color: #5d4037;
}
.menu-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.menu-item {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
transition: transform 0.3s;
}
.menu-item:hover {
transform: translateY(-5px);
}
.menu-item img {
width: 100%;
height: 200px;
object-fit: cover;
}
.menu-content {
padding: 1.5rem;
}
.menu-content h3 {
margin-bottom: 0.5rem;
color: #5d4037;
}
.price {
color: #8d6e63;
font-weight: bold;
font-size: 1.2rem;
margin: 0.5rem 0;
}
.menu-content p {
color: #666;
font-size: 0.9rem;
}
footer {
background-color: #5d4037;
color: white;
text-align: center;
padding: 1.5rem;
margin-top: 2rem;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.2rem;
}
}
</style>
</head>
<body>
<header>
<h1>Anycoder Coffee Shop</h1>
</header>
<section class="hero">
<h1>Welcome to Anycoder Coffee Shop</h1>
<p>Where code meets caffeine. Perfect brew for programmers.</p>
<div style="max-width: 800px; width: 100%; margin-top: 20px;">
<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_213358_68abd385_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 class="menu-section">
<h2>Our Menu</h2>
<div class="menu-grid">
<div class="menu-item">
<img src="https://images.unsplash.com/photo-1544787219-7f47ccb76574?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Espresso">
<div class="menu-content">
<h3>Espresso</h3>
<p>A strong shot of coffee to kickstart your coding session.</p>
<div class="price">$3.50</div>
</div>
</div>
<div class="menu-item">
<img src="https://images.unsplash.com/photo-1533134486753-c833f0ed4866?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Latte">
<div class="menu-content">
<h3>Latte</h3>
<p>Smooth espresso with steamed milk for a gentle caffeine boost.</p>
<div class="price">$4.50</div>
</div>
</div>
<div class="menu-item">
<img src="https://images.unsplash.com/photo-1562037372-9de9a79d0c57?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Cappuccino">
<div class="menu-content">
<h3>Cappuccino</h3>
<p>Equal parts espresso, steamed milk, and frothy foam.</p>
<div class="price">$4.00</div>
</div>
</div>
<div class="menu-item">
<img src="https://images.unsplash.com/photo-1525634873151-36d36ac3b9e3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Cold Brew">
<div class="menu-content">
<h3>Cold Brew</h3>
<p>Smooth, refreshing coffee steeped for hours, perfect for afternoon debugging.</p>
<div class="price">$5.00</div>
</div>
</div>
</div>
</section>
<footer>
<p>© 2023 Anycoder Coffee Shop. All rights reserved.</p>
<p>123 Developer Street, Code City CC 10101 | (123) 456-7890</p>
</footer>
</body>
</html> |