File size: 4,921 Bytes
61bec0b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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="AnyCoder Coffee - Premium coffee and coding space for developers">
    <title>AnyCoder Coffee - Home</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=Source+Code+Pro:wght@400;600&family=Source+Sans+Pro:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
    <header>
        <div class="container">
            <div class="logo">
                <h1><span class="logo-code">&lt;/&gt;</span> AnyCoder Coffee</h1>
            </div>
            <nav>
                <button class="mobile-menu-toggle" aria-label="Toggle navigation menu">
                    <span></span>
                    <span></span>
                    <span></span>
                </button>
                <ul class="nav-menu">
                    <li><a href="index.html" class="active">Home</a></li>
                    <li><a href="about.html">About</a></li>
                    <li><a href="contact.html">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <main>
        <section class="hero">
            <div class="container">
                <div class="hero-content">
                    <h2>Code. Coffee. Community.</h2>
                    <p>Where developers find their perfect brew and workspace</p>
                    <a href="about.html" class="btn">Discover Our Story</a>
                </div>
            </div>
        </section>

        <section class="features">
            <div class="container">
                <h2>Why Developers Love Us</h2>
                <div class="features-grid">
                    <div class="feature-card">
                        <div class="feature-icon"></div>
                        <h3>High-Speed WiFi</h3>
                        <p>Gigabit internet with dedicated bandwidth for seamless coding and deployment</p>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon"></div>
                        <h3>Artisan Coffee</h3>
                        <p>Specialty brews from ethical sources, roasted to perfection for coding sessions</p>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon">💻</div>
                        <h3>Ergonomic Spaces</h3>
                        <p>Comfortable workstations with ample power outlets and monitor connections</p>
                    </div>
                </div>
            </div>
        </section>

        <section class="hours-location">
            <div class="container">
                <div class="hours-location-grid">
                    <div class="hours">
                        <h2>Opening Hours</h2>
                        <ul>
                            <li><span>Mon-Fri:</span> 7:00 AM - 11:00 PM</li>
                            <li><span>Saturday:</span> 8:00 AM - 11:00 PM</li>
                            <li><span>Sunday:</span> 9:00 AM - 10:00 PM</li>
                        </ul>
                    </div>
                    <div class="location">
                        <h2>Find Us</h2>
                        <p>123 Developer Avenue<br>Tech City, TC 10101</p>
                        <a href="contact.html" class="btn-outline">Get Directions</a>
                    </div>
                </div>
            </div>
        </section>
    </main>

    <footer>
        <div class="container">
            <div class="footer-content">
                <div class="footer-section">
                    <h3>AnyCoder Coffee</h3>
                    <p>Where code meets coffee perfection</p>
                </div>
                <div class="footer-section">
                    <h4>Connect</h4>
                    <ul>
                        <li><a href="#">GitHub</a></li>
                        <li><a href="#">Twitter</a></li>
                        <li><a href="#">LinkedIn</a></li>
                    </ul>
                </div>
                <div class="footer-section">
                    <h4>Resources</h4>
                    <ul>
                        <li><a href="#">Tech Events</a></li>
                        <li><a href="#">Developer Blog</a></li>
                        <li><a href="#">Coffee Recipes</a></li>
                    </ul>
                </div>
            </div>
            <div class="footer-bottom">
                <p>&copy; 2023 AnyCoder Coffee. All rights reserved.</p>
            </div>
        </div>
    </footer>

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