-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
72 lines (69 loc) · 2.64 KB
/
contact.html
File metadata and controls
72 lines (69 loc) · 2.64 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
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FELLOWSHIP</title>
<script src="https://kit.fontawesome.com/d6bd902a44.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="nav">
<a href="index.html" class="logo">☕Coffee Bliss</a>
<ul class="menu">
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#menu">Menu</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main id="main">
<section id="contact" class="contact-hero">
<div class="contact-info">
<h1>Get in Touch</h1>
<p>We’d love to hear from you! Whether it’s feedback, questions, or just a hello, drop us a message below or visit us.</p>
<ul>
<li><strong>Address:</strong> Uptown Mall, Zaire Rd, Barnawa, Kaduna 800282, Kaduna</li>
<li><strong>Phone:</strong> <a href="tel:+1234567890">+234 904 256 5521</a></li>
<li><strong>Email:</strong> <a href="mailto:hello@coffeebliss.com">joashgideon02@gmail.com</a></li>
</ul>
<div class="social-icons">
<a href="#" aria-label="Facebook"><i class="fa-brands fa-facebook"></i></a>
<a href="#" aria-label="Twitter"><i class="fa-brands fa-x-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fa-brands fa-instagram"></i></a>
</div>
</div>
<div class="contact-form-container">
<form action="#" method="POST" class="contact-form">
<p>
<label for="name">Name</label>
<input id="name" name="name" type="text" required placeholder="Your name">
</p>
<p>
<label for="email">Email</label>
<input id="email" name="email" type="email" required placeholder="you@example.com">
</p>
<p>
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required placeholder="Your message..."></textarea>
</p>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section>
<section class="map-section">
<h2>Find Us Here</h2>
<div class="map">
<iframe
src="https://maps.app.goo.gl/nzTjNMXAUWBcEFBd9"
width="100%" height="300" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0">
</iframe>
</div>
</section>
</main>
<footer>
<p>© 2025 Coffee Bliss. All rights reserved.</p>
</footer>
</body>
</html>