-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcontact.html
261 lines (255 loc) · 9.48 KB
/
contact.html
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kwamuri | Contact us</title>
<!-- bootstrap -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<!-- animate -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!-- venobox -->
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet" />
<!-- Aos is very necessary -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Font-awsome -->
<link href="assets/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet"/>
<!-- main style file -->
<link rel="stylesheet" href="assets/css/index.css" />
<!-- For the contact page icons -->
<link href="assets/font/ionicons/css/ionicons.min.css" rel="stylesheet" />
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;1,300&display=swap" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<a href="#intro" class="scrollto"
><img src="#" alt=""
/></a>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="works.html">How it works</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="about.html">About</a></li>
<li class="active"><a href="contact.html">Contact Us</a></li>
<li class="contact-us"><a href="login.html">Login</a></li>
<li class="contact-us"><a href="#">Dashboard</a></li>
</ul>
</nav>
</div>
</header>
<!-- End Header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container">
<h2 class="mb-4 lead kwamuri-intro">
Care to get in touch?
</h2>
<p class="mb-4 pb-0">
<span
>Get in touch with us to know anything concerning our services, we are here for you.</span
>
</p>
<a href="#contact" class="btn btn-outline-info cta-btn scrollto"
>Press Me</a
>
</div>
</section>
<div class="container">
<div class="row mt-5 mb-2">
<div class="col d-flex flex-wrap text-uppercase justify-content-center">
<h2 class="services font-weight-bold align-self-center mx-1 lead">
Contact
</h2>
<h2 class="services section-title--special mx-1 lead">Us</h2>
</div>
</div>
</div>
<!--==========================
Contact Section
============================-->
<!-- ======= Call To Action Section ======= -->
<section id="contact" class="contact-w3ls">
<div class="container">
<div class="row contact-info">
<div class="col-md-4">
<div class="contact-address">
<i class="ion-ios-location-outline"></i>
<h3>Address</h3>
<address>AAA Street name, Hre 535022, ZIM</address>
</div>
</div>
<div class="col-md-4">
<div class="contact-phone">
<i class="ion-ios-bino-outline"></i>
<h3>Phone Number</h3>
<p><a href="tel:+155895548855">+263 2213 3321 22</a></p>
</div>
</div>
<div class="col-md-4">
<div class="contact-email">
<i class="ion-ios-email-outline"></i>
<h3>Email</h3>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</div>
<div class="form">
<div id="sendmessage">Your message has been sent. Thank you!</div>
<div id="errormessage"></div>
<form action="" method="post" role="form" class="contactForm">
<div class="form-row">
<div class="form-group col-md-6">
<input
type="text"
name="name"
class="form-control"
id="name"
placeholder="Your Name"
data-rule="minlen:4"
data-msg="Please enter at least 4 chars"
/>
<div class="validation"></div>
</div>
<div class="form-group col-md-6">
<input
type="email"
class="form-control"
name="email"
id="email"
placeholder="Your Email"
data-rule="email"
data-msg="Please enter a valid email"
/>
<div class="validation"></div>
</div>
</div>
<div class="form-group">
<input
type="text"
class="form-control"
name="subject"
id="subject"
placeholder="Subject"
data-rule="minlen:4"
data-msg="Please enter at least 8 chars of subject"
/>
<div class="validation"></div>
</div>
<div class="form-group">
<textarea
class="form-control"
name="message"
rows="5"
data-rule="required"
data-msg="Please write something for us"
placeholder="Message"
></textarea>
<div class="validation"></div>
</div>
<div class="text-center">
<button type="submit">Send Message</button>
</div>
</form>
</div>
</div>
</section>
<!-- End Call To Action Section -->
<footer id="footer">
<div class="footer-style">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 footer-links">
<h4>Useful Link(s)</h4>
<!--bx is for the boxicons-->
<ul class="lead">
<li>
<i class="bx bx-chevron-right"></i>
<a href="works.html">How it works</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="services.html">Services</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="about.html">About Us</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="conatct.html">Contact Us</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Privacy Policy</a>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-links">
<h4>Our Services</h4>
<ul class="lead">
<li>
<i class="bx bx-chevron-right"></i><a href="#">Package delivery</a>
</li>
<li>
<i class="bx bx-chevron-right"></i
><a href="#">Pick-up</a>
</li>
<li>
<i class="bx bx-chevron-right"></i
><a href="#">Confidentiality</a>
</li>
<li>
<i class="bx bx-chevron-right"></i
><a href="#">Safety</a>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-links">
<h4 class="text-center skills">Our Links</h4>
<p class="text-style">
Please like and folow Us on our social network for more updates
and promos
</p>
<div class="social-links mt-3">
<a href="#" class="twitter"><i class="fab fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fab fa-facebook"></i></a>
<a href="#" class="instagram"
><i class="fab fa-instagram"></i
></a>
</div>
<br />
</div>
</div>
</div>
</div>
<div class="container footer-bottom clearfix">
<div class="copyright">
© Copyright <strong><span>Kwauri</span></strong
>. All Rights Reserved.
</div>
<div class="credits">Designed by <a href="#">Kwauri Dev Team</a></div>
</div>
</footer>
<a href="#" class="back-to-top"></a>
</body>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/bootstrap/css/bootstrap.min.css"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/wow/wow.min.js"></script>
<script src="assets/vendor/superfish/superfish.min.js"></script>
<script src="assets/lib/venobox/venobox.min.js"></script>
<script src="assets/lib/owlcarousel/owl.carousel.min.js"></script>
<!-- font awesome -->
<script src="assets/js/all.js"></script>
<!-- Main JS File -->
<script src="assets/js/main.js"></script>
</html>