File size: 4,263 Bytes
af3ac5e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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="Cozy Coffee House - Premium coffee and pastries in a welcoming atmosphere">
    <title>Cozy Coffee House</title>
    <link rel="stylesheet" href="assets/css/styles.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Raleway:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
    <header>
        <div class="container">
            <div class="logo">Cozy Coffee</div>
            <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>
        </div>
    </header>

    <section id="home" class="hero">
        <div class="container">
            <h1>Welcome to Cozy Coffee</h1>
            <p>Where every cup tells a story</p>
            <img src="https://huggingface.co/datasets/akhaliq/anycoder-media/resolve/main/image/20250824_225333_386f5b9a_image_to_image_result.jpg" alt="full cup of coffee" style="max-width: 100%; height: auto; border-radius: 8px; margin: 10px 0;" loading="lazy" />
            <a href="#menu" class="btn">Explore Our Menu</a>
        </div>
    </section>

    <section id="menu" class="menu">
        <div class="container">
            <h2>Our Menu</h2>
            <div class="menu-grid">
                <div class="menu-item">
                    <h3>Espresso</h3>
                    <p>Rich and bold shot of pure coffee</p>
                    <span class="price">$2.50</span>
                </div>
                <div class="menu-item">
                    <h3>Cappuccino</h3>
                    <p>Espresso with steamed milk and foam</p>
                    <span class="price">$3.75</span>
                </div>
                <div class="menu-item">
                    <h3>Latte</h3>
                    <p>Smooth espresso with steamed milk</p>
                    <span class="price">$4.25</span>
                </div>
                <div class="menu-item">
                    <h3>Cold Brew</h3>
                    <p>Smooth and refreshing cold coffee</p>
                    <span class="price">$4.00</span>
                </div>
                <div class="menu-item">
                    <h3>Mocha</h3>
                    <p>Espresso with chocolate and milk</p>
                    <span class="price">$4.50</span>
                </div>
                <div class="menu-item">
                    <h3>Americano</h3>
                    <p>Espresso with hot water</p>
                    <span class="price">$3.00</span>
                </div>
            </div>
        </div>
    </section>

    <section id="about" class="about">
        <div class="container">
            <h2>About Us</h2>
            <p>Founded in 2010, Cozy Coffee House has been serving the community with premium coffee and delicious pastries. We source our beans directly from sustainable farms and roast them in-house to ensure the freshest flavors in every cup.</p>
            <p>Visit us for your morning pick-me-up, a business meeting, or simply to relax in our warm and welcoming atmosphere.</p>
        </div>
    </section>

    <section id="contact" class="contact">
        <div class="container">
            <h2>Visit Us</h2>
            <div class="contact-info">
                <p><strong>Address:</strong> 123 Coffee Street, Bean City</p>
                <p><strong>Hours:</strong> Mon-Fri 6am-8pm, Sat-Sun 7am-9pm</p>
                <p><strong>Phone:</strong> (555) 123-4567</p>
                <p><strong>Email:</strong> hello@cozycoffee.com</p>
            </div>
        </div>
    </section>

    <footer>
        <div class="container">
            <p>&copy; 2023 Cozy Coffee House. All rights reserved.</p>
        </div>
    </footer>

    <script src="assets/js/script.js"></script>
</body>
</html>