-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
66 lines (60 loc) · 3.25 KB
/
Contact.html
File metadata and controls
66 lines (60 loc) · 3.25 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">
<title>Contact - 47TrustedBuilders</title>
</head>
<body class="font-sans antialiased">
<!-- Navigation Bar -->
<nav class="bg-blue-500 text-white py-4">
<div class="container mx-auto flex justify-between items-center">
<a href="index.html" class="text-2xl font-bold">47TrustedBuilders</a>
<ul class="flex space-x-6">
<li><a href="index.html" class="hover:underline">Home</a></li>
<li><a href="how it works.html" class="hover:underline">How It Works</a></li>
<li><a href="features.html" class="hover:underline">Features</a></li>
<li><a href="for builders.html" class="hover:underline">For Builders</a></li>
<li><a href="contact.html" class="hover:underline">Contact</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<header class="bg-gray-100 py-20 text-center">
<h1 class="text-4xl font-bold">Contact Us</h1>
<p class="mt-4 text-lg text-gray-600">We'd love to hear from you! Reach out with your inquiries or feedback.</p>
</header>
<!-- Contact Form Section -->
<section class="py-16 bg-white">
<div class="container mx-auto text-center">
<h2 class="text-2xl font-bold">Get In Touch</h2>
<p class="mt-4 text-lg text-gray-600">Fill out the form below, and we'll get back to you as soon as possible.</p>
<form class="mt-8 max-w-md mx-auto">
<input type="text" placeholder="Your Name" class="w-full px-4 py-3 border rounded mb-4" required />
<input type="email" placeholder="Your Email" class="w-full px-4 py-3 border rounded mb-4" required />
<textarea placeholder="Your Message" class="w-full px-4 py-3 border rounded mb-4" rows="4" required></textarea>
<button type="submit" class="w-full px-6 py-3 bg-blue-500 text-white rounded hover:bg-blue-600">
Send Message
</button>
</form>
</div>
</section>
<!-- Additional Contact Information -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto text-center">
<h2 class="text-2xl font-bold">Our Contact Details</h2>
<p class="mt-4 text-lg text-gray-600">Alternatively, you can reach us at:</p>
<div class="mt-8">
<p class="text-lg">Email: <a href="mailto:[email protected]" class="text-blue-500 hover:underline">[email protected]</a></p>
<p class="mt-2 text-lg">Phone: <a href="tel:+1 (832) 387-4791" class="text-blue-500 hover:underline">+1 234 113362</a></p>
<p class="mt-2 text-lg">Address: Asaba, Delta State Nigeria</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-6 bg-gray-800 text-white text-center">
<p>© 2024 47TrustedBuilders. All rights reserved.</p>
</footer>
</body>
</html>