-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
91 lines (83 loc) · 4.15 KB
/
contact.html
File metadata and controls
91 lines (83 loc) · 4.15 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Pem Tech Solution</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Pem Tech Solution</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="page-header">
<h1>Contact Us</h1>
<p>We're here to help! Reach out to us for inquiries, quotes, or support.</p>
</section>
<section class="contact-info">
<h2>Our Contact Information</h2>
<p><strong>Address:</strong> 25 Idowu Akinola Crescent Off Olufemi Ojo, Olowoira Lagos.</p>
<p><strong>Phone:</strong> O8161202291</p>
<p><strong>Email:</strong> mormahejimepaul@gmail.com</p>
<p><strong>Business Hours:</strong> Monday - Friday, 9:00 AM - 5:00 PM (WAT)</p>
</section>
<section class="social-media">
<h2>Connect With Us</h2>
<p>Stay updated and follow us on our social media platforms:</p>
<ul class="social-links">
<li><a href="[Your Facebook Link]" target="_blank"><img src="images/facebook-icon.png" alt="Facebook"> Facebook</a></li>
<li><a href="[Your Twitter Link]" target="_blank"><img src="images/twitter-icon.png" alt="Twitter"> Twitter</a></li>
<li><a href="[Your LinkedIn Link]" target="_blank"><img src="images/linkedin-icon.png" alt="LinkedIn"> LinkedIn</a></li>
<li><a href="[Your Instagram Link]" target="_blank"><img src="images/instagram-icon.png" alt="Instagram"> Instagram</a></li>
</ul>
</section>
<section class="contact-form">
<h2>Request a Quote or Service</h2>
<form action="https://formspree.io/f/mqapozaw" method="POST">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject">
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="button">Submit Request</button>
</form>
</section>
<div class="map-container">
<iframe src="https://www.google.com/maps/embed?pb=!4v1744767831758!6m8!1m7!1sySRDAAMasFhXcO64Pb-VRQ!2m2!1d6.632989834415519!2d3.377862911305378!3f216.62565221708496!4f2.495412057072059!5f3.0591151420934595" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</main>
<footer>
<p>© 2025 Pem Tech Solution. All rights reserved.</p>
</footer>
<script src="script.js"></script>
<button id="back-to-top-btn" title="Go to top">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
<path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"/>
<path d="M0 0h24v24H0z" fill="none"/>
</svg>
</button>
</body>
</html>