-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
235 lines (214 loc) · 7.87 KB
/
Copy pathcontact.html
File metadata and controls
235 lines (214 loc) · 7.87 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
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
<!DOCTYPE html>
<html>
<head>
<title>Customfinity | Contact Us</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css"
rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/css/mdb.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="css/contactstyle.css" />
<script src="js/script.js"></script>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<!-- Brand -->
<a class="navbar-brand" href="index.html"><img src="productimages/shirt/customfinity-logo.png"
width="155" height="60" alt="" /></a>
<!-- Toggler/collapsibe Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links -->
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav ml-auto text-center" id="navtab">
<li class="nav-item">
<a class="nav-link active" href="index.html">index</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Products
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="shirt.html">Shirt</a>
<a class="dropdown-item" href="mug.html">Mug</a>
<a class="dropdown-item" href="phonecase.html">Phone Case</a>
<a class="dropdown-item" href="wallet.html">Wallet</a>
<a class="dropdown-item" href="cap.html">Cap</a>
<a class="dropdown-item" href="keychain.html">Keychain</a>
<a class="dropdown-item" href="bag.html">Bag</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenu" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Printing
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenu">
<a class="dropdown-item" href="visitingcard.html">Visiting Card</a>
<a class="dropdown-item" href="panaflex.html">Panaflex</a>
<a class="dropdown-item" href="letterhead.html">Letterhead</a>
<a class="dropdown-item" href="invoice.html">Invoice</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="partner.html">Partner</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="contact-info">
<div class="container">
<div class="mb-4">
<h1 class="text-center mt-2 display-5 font-weight-normal pb-3" style="color: black">
<span class="theme-text font-weight-bold">CONTACT</span> US
</h1>
<p class="text-center w-responsive mx-auto mb-5">
Do you have any questions? Please do not hesitate to contact us
directly. <br />Our team will come back to you within a matter of
hours to help you.
</p>
<hr class="w-100 mx-auto p-4" />
<div class="row">
<div class="col-md-9 mb-md-0 mb-5">
<form id="contactform">
<div class="row">
<div class="col-md-6">
<div class="md-form mb-0">
<input type="text" name="name" class="form-control" required />
<label for="name">Your Name</label>
</div>
</div>
<div class="col-md-6">
<div class="md-form mb-0">
<input type="text" name="email" class="form-control" required />
<label for="email">Your Email</label>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="md-form mb-0">
<input type="text" name="subject" class="form-control" required />
<label for="subject">Subject</label>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="md-form">
<textarea type="text" name="message" rows="3"
class="form-control md-textarea"></textarea>
<label for="message">Your Message</label>
</div>
</div>
</div>
<br />
<div class="text-center text-md-left">
<button class="btn" type="submit">SUBMIT</button>
</div>
</form>
</div>
<div class="col-md-3 text-center" style="color: #74a">
<ul class="list-unstyled">
<li>
<i class="fas fa-map-marker-alt fa-2x"></i>
<p class="text-dark">
Customfinity buildings, karachi, pakistan
</p>
</li>
<li>
<i class="fas fa-phone mt-4 fa-2x"></i>
<p class="text-dark">+935 3434 53 535</p>
</li>
<li>
<i class="fas fa-envelope mt-4 fa-2x"></i>
<p class="text-dark">Customfinity.co@gmail.com</p>
</li>
</ul>
</div>
</div>
</div>
<br />
<hr class="w-100 mx-auto" />
<h1 class="text-center display-5 font-weight-normal my-2" style="color: black">
<span class="theme-text font-weight-bold">FIND</span> US HERE
</h1>
<hr class="w-100 mx-auto" />
<div id="map" class="mt-5"></div>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg&callback=initMap&v=weekly"
defer></script>
</div>
</div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.4/umd/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/js/mdb.min.js"></script>
<section class="contact-area" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-6 offset-lg-3">
<div class="contact-content text-center">
<a href="index.html"><img src="images/customfinity-logo.png" alt="logo" /></a>
<p>
Customize, sell, and print custom products faster and more
effectively than ever before. Let your customer's imagination
fly, and Customfinity will do the rest.
</p>
<div class="hr"></div>
<h6>Customfinity buildings, karachi, pakistan</h6>
<h6>+935 2345 67 912<span>|</span>+935 3434 53 535</h6>
<div class="contact-social">
<ul>
<li>
<a class="hover-target" href=""><i class="fa fa-facebook-f"></i></a>
</li>
<li>
<a class="hover-target" href=""><i class="fa fa-linkedin"></i></a>
</li>
<li>
<a class="hover-target" href=""><i class="fa fa-github"></i></a>
</li>
<li>
<a class="hover-target" href=""><i class="fa fa-behance"></i></a>
</li>
<li>
<a class="hover-target" href=""><i class="fa fa-pinterest-p"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =============== 1.9 Contact Area End ====================-->
<!-- =============== 1.9 Footer Area Start ====================-->
<footer>
<p>
Copyright © 2022
<img src="images/customfinity-logo.png" alt="logo" class="mb-2" />All
Rights Reserved.
</p>
</footer>
</body>
</html>