forked from jashim-official75/GETINCARD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
322 lines (297 loc) · 16.9 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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="">
<meta name="description" content="">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<!-- ==========BOXICON CSS LINK========== -->
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<!-- ==========UNICONS CSS LINK========== -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<!-- ==========FONTAWESOME CSS LINK========== -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
<!-- ==========POPPINS GOOGLE FONT LINK========== -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<!-- ==========GLIGHTBOX CSS LINK========== -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css" />
<!-- ==========SWIPER SLIDER CSS ========== -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" />
<!-- ==========BOOTSTARP CSS LINK========== -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- ==========CUSTOM CSS LINK========== -->
<link rel="stylesheet" href="css/main.css">
<title>GetInCard for Digital Business Card</title>
</head>
<body>
<!-- ===================================== -->
<!-- HEADER PART START -->
<!-- ===================================== -->
<header id="header" >
<div class="menubar fix-top flex_content sticky">
<div class="container flex_content ">
<div class="logo">
<a href="index.html" class="logo"><img src="images/logo.webp" alt=""></a>
</div>
<nav class="ms-auto" id="menu">
<ul class="flex">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="account.html">Account</a></li>
<li class="ms-auto login"><a href="signin.html">LogIn</a></li>
</ul>
</nav>
<div class="mobile_menu d-flex align-items-center g-2">
<div class="cart_part cart-button">
<span><i class='bx bx-cart bx-md'></i></span>
<div class="count_number">0</div>
</div>
<div class="humburger" id="humburger">
<span class="l1"></span>
<span class="l2"></span>
<span class="l3"></span>
</div>
</div>
</div>
</div>
</header>
<!-- ===================================== -->
<!-- HEADER PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- SHOPPING CART SIDEBAR START -->
<!-- ===================================== -->
<aside id="sidebar-cart">
<main>
<a href="#" class="close-button"><span class="close-icon"><i class="fa-solid fa-xmark"></i></span></a>
<h2>Shopping Cart <span class="count">2</span></h2>
<ul class="products">
<li class="product">
<a href="#" class="product-link">
<span class="product-image">
<img src="images/card-01.webp" alt="Product Photo">
</span>
<span class="product-details">
<h3>Black & White Card</h3>
<span class="qty-price">
<span class="qty">
<button class="minus-button" id="minus-button-1">-</button>
<input type="number" id="qty-input-1" class="qty-input" step="1" min="1" max="1000" name="qty-input" value="1" pattern="[0-9]*" title="Quantity" inputmode="numeric">
<button class="plus-button" id="plus-button-1">+</button>
<input type="hidden" name="item-price" id="item-price-1" value="12.00">
</span>
<span class="price">$1060.00</span>
</span>
</span>
</a>
<a href="#remove" class="remove-button"><span class="remove-icon">X</span></a>
</li>
<li class="product">
<a href="#" class="product-link">
<span class="product-image">
<img src="images/card-02.webp" alt="Product Photo">
</span>
<span class="product-details">
<h3>Matte Blue Card</h3>
<span class="qty-price">
<span class="qty">
<button class="minus-button" id="minus-button-1">-</button>
<input type="number" id="qty-input-2" class="qty-input" step="1" min="1" max="1000" name="qty-input" value="1" pattern="[0-9]*" title="Quantity" inputmode="numeric">
<button class="plus-button" id="plus-button-1">+</button>
<input type="hidden" name="item-price" id="item-price-2" value="12.00">
</span>
<span class="price">$1028.00</span>
</span>
</span>
</a>
<a href="#remove" class="remove-button"><span class="remove-icon">X</span></a>
</li>
</ul>
<div class="totals">
<div class="subtotal">
<span class="label">Subtotal:</span> <span class="amount">$2088.00</span>
</div>
<div class="action-buttons">
<a class="view-cart-button" href="cart.html">Cart</a>
<a class="checkout-button" href="checkout.html">Checkout <i class='bx bx-right-arrow-alt'></i></a>
</div>
</main>
</aside>
<div id="sidebar-cart-curtain"></div>
<!-- ===================================== -->
<!-- SHOPPING CART SIDEBAR END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- ACCOUNT PART START -->
<!-- ===================================== -->
<section id="account" class="contact_us py-4">
<div class="container">
<div class="row align-items-center justify-content-center h-100">
<div class="col-md-12 account ">
<div class="row g-0">
<div class="col-lg-6 offset-lg-3 col-md-12">
<form action="" class="account_form">
<h1 class="section_title text-light">Contact Us</h1>
<div class="account_form">
<div class="inputGroup row">
<div class="inputBx w-50">
<label for="name">Name</label>
<input type="text" placeholder="Name" id="name" autofocus="" autocapitalize="none" autocomplete="name" required>
</div>
<div class="inputBx w-50">
<label for="username">Username</label>
<input type="text" placeholder="Username" id="username" autofocus="" autocapitalize="none" autocomplete="username" required>
</div>
</div>
<div class="inputGroup row">
<div class="inputBx w-50">
<label for="email">Email</label>
<input type="email" placeholder="Email" id="email" required autofocus="" autocapitalize="none" autocomplete="email" required>
</div>
<div class="inputBx w-50">
<label for="phone">Phone</label>
<input type="number" placeholder="Phone" id="phone" required autofocus="" autocapitalize="none" autocomplete="phone" required>
</div>
</div>
<div class="agreement">
<label for="agree">Have you purchased our card?</label>
<div class="yes">
<input type="radio" id="yes" name="agree"> <label for="yes" class="radio_circle">Yes</label>
</div>
<div class="no">
<input type="radio" id="no" required name="agree"> <label for="no" class="radio_circle">No</label>
</div>
</div>
<div class="contact_order">
<label for="reason" class="my-2">Contact reason</label>
<select name="reason" id="reason" class="inputBx">
<option value="Sales">Sales</option>
<option value="Help Desk">Help Desk</option>
<option value="Billing">Billing</option>
<option value="Support">Support</option>
<option value="Other's">Other's</option>
</select>
</div>
<div class="your_message">
<label for="reason" class="my-2">Your Message</label>
<textarea name="message" id="message" placeholder="Your Message" ></textarea>
</div>
<div class="account_btns">
<input type="submit" value="Register" class="primary_btn">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===================================== -->
<!-- ACCOUNT PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- FOOTER SECTION START -->
<!-- ===================================== -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-xl-2 col-lg-4 col-sm-6 col-xs-12">
<div class="single_footer">
<h4>Navigate</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="account.html">Account</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</div>
</div>
<div class="col-xl-2 col-lg-4 col-sm-6 col-xs-12">
<div class="single_footer single_footer_address">
<h4>Shop</h4>
<ul>
<li><a href="#">White & Black</a></li>
<li><a href="#">Gradient White</a></li>
<li><a href="#">Classic Silver</a></li>
<li><a href="#">Classic Golden</a></li>
<li><a href="#">Classic Blue</a></li>
</ul>
</div>
</div>
<div class="col-xl-4 col-lg-4 col-sm-12 col-xs-12">
<div class="single_footer single_footer_address">
<h4>Address</h4>
<address>
<ul>
<li><span>GETINCARD</span></li>
<li><span>72/1, D.I.T. Road</span> </li>
<li><span> RH Home Center, Level-3, Suite <br> No-324, Green Road, Farmgate 1215 Dhaka</span></li>
<li><i class='bx bx-phone' ></i><span> Phone: <a href="tel:+01728953211">01728953211</a></span></li>
<li><span><i class='bx bx-envelope ' ></i> Email:</span> <a href="mailto:Info@getincard.com">Info@getincard.com</a> </li>
</ul>
</address>
</div>
</div>
<div class="col-xl-4 col-md-12 col-xs-12">
<div class="single_footer single_footer_address px-0">
<h4>Subscribe today</h4>
<div class="signup_form">
<form action="#" class="subscribe">
<input type="text" class="subscribe__input" placeholder="Enter Email Address">
<button type="button" class="subscribe__btn"><i class="fas fa-paper-plane"></i></button>
</form>
</div>
</div>
<div class="social_profile">
<ul>
<li> <a href="" target="_blank" style="--i:#4267B2;"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="" target="_blank" style="--i:#FF0000;"><i class="uil uil-youtube"></i></a></li>
<li><a href="" target="_blank" style="--i:#1DA1F2;"><i class="fab fa-twitter"></i></a></li>
<li><a href="" target="_blank" class="instagram_bg"><i class="fab fa-instagram"></i></a></li>
<li><a href="" target="_blank" style="--i:#E60023;"><i class="fab fa-pinterest-p"></i></a></li>
<li><a href="" target="_blank" style="--i:#0072b1;"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-sm-12 col-xs-12">
<p class="copyright text-light">Copyright © 2022 <a href="https://getinconnect.com" target="_blank">GETINCARD</a></p>
</div>
</div>
</div>
</div>
<!-- ===================================== -->
<!-- FOOTER SECTION END -->
<!-- ===================================== -->
<!-- ==========JS HERE========== -->
<!-- ==========COUNTERUP JS LINK ========== -->
<!-- ==========MAIN JQUREY LINK========== -->
<!-- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<!-- ==========BOOTSTARP JS LINK========== -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"></script>
<!-- ==========COUNTERUP JS LINK ========== -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script>
<script src="https://bfintal.github.io/Counter-Up/jquery.counterup.min.js"></script>
<!-- ==========SWIPER SLIDER JS ========== -->
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
<!-- ==========BOXICONS JS========== -->
<script src="https://unpkg.com/boxicons@2.1.2/dist/boxicons.js"></script>
<!-- ==========LORDICONS JS========== -->
<script src="https://cdn.lordicon.com/pzdvqjsp.js"></script>
<!-- ==========GLIGHTBOX JS LINK ========== -->
<script src="https://cdn.jsdelivr.net/gh/mcstudios/glightbox/dist/js/glightbox.min.js"></script>
<!-- ==========CUSTOM JS ========== -->
<script src="js/app.js"></script>
<script>
// GLightbox();
</script>
</body>
</html>