-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
66 lines (59 loc) · 2.16 KB
/
contact.html
File metadata and controls
66 lines (59 loc) · 2.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Contact - The Culinary Guild</title>
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar">
<h2 class="logo">🍽️ The Culinary Guild</h2>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
<hr>
<!-- MAIN CONTENT -->
<main class="contact-page">
<section class="contact-hero">
<h1>Contact Us</h1>
<p>
The Culinary Guild supports caterers and clients through trusted lead sharing,
professional training, practical certification, equipment access, and a network
of vetted catering experts for different types of events.
</p>
</section>
<section class="contact-summary">
<div class="contact-card">
<h2>What We Offer</h2>
<p>
From the private Overflow lead-sharing system to Guild education and the
equipment library, our services are designed to help members grow, stay
prepared, and deliver excellent event experiences.
</p>
</div>
<div class="contact-card contact-details">
<h2>Contact Details</h2>
<p><strong>Location:</strong> Nairobi, Kenya</p>
<p><strong>Phone:</strong> +254 743 993 715</p>
<p><strong>Email:</strong> info@culinaryguild.co.ke</p>
</div>
</section>
</main>
<hr>
<!-- FOOTER -->
<footer class="footer">
<div class="footer-content">
<p>Nairobi, Kenya</p>
<p>+254 743 993 715</p>
<p>info@culinaryguild.co.ke</p>
<p>© 2026 The Culinary Guild. All rights reserved.</p>
</div>
</footer>
</body>
</html>