-
Notifications
You must be signed in to change notification settings - Fork 2
/
contactUs.html
302 lines (273 loc) · 8.4 KB
/
contactUs.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
<!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">
<title>Contact Us - FAB BAG</title>
</head>
<style>
#top{
background-color: black;
color: white;
text-align: center;
width: 100%;
padding: 10px 0;
}
#navbar{
background-color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
position:sticky;
top: 0;
}
#front{
width: 200px;
height: 50px;
margin-left: 26%;
}
#navbar>h2{
font-size: 20px;
margin-left: 20px;
color: rgb(209, 165, 82);
}
#navbar>h2:hover{
color: rgb(236, 180, 76);
}
i{
margin: auto;
color: rgb(197, 157, 82);
}
i:hover{
color: rgb(253, 191, 76);
}
div i{
margin: 0 30px;
}
#container{
height: 500px;
width: 75%;
/* border: 1px solid red; */
margin: auto;
display: flex;
}
h4{
font-size: 30px;
font-family: 'Poppins', sans-serif;
margin-left: 14px;
margin-bottom: 3px;
}
#contact{
height: 500px;
width: 50%;
}
#forms > input{
display: block;
padding-bottom: 12px;
}
input{
height: 50px;
width: 70%;
box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
padding-left: 30px;
margin-left: 20px;
}
#email{
margin-top: 13px;
margin-bottom: 13px;
}
#comment{
padding-bottom: 6px;
margin-bottom: 9px;
/* margin-left: 13px; */
}
#contact1{
height: 500px;
width: 45%;
margin-top: 14px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
background-color: rgb(231, 225, 225);
}
h2{
text-align: center;
font-family: 'Poppins', sans-serif;
padding-left: 13px;
}
p{
padding-left: 18px;
line-height: 150%;
font-size: 17px;
}
p+p{
margin-top: -5px;
}
#buttn{
margin: auto;
height: 50px;
width: 20%;
}
.btn{
padding-top: 3px;
padding-bottom: 3px;
padding-top: 12px;
padding-left: 12px;
margin: auto;
margin-left: 5px;
margin-top: 4px;
border-radius: 1px;
}
.btn:hover{
color: black;
background-color: brown;
}
#shadow{
height: 10px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
footer>div{
width: 70%;
display: flex;
margin: 60px auto;
justify-content: space-between;
align-items: flex-start;
font-size: 14px;
}
footer>div>div *{
margin-bottom: 20px;
text-decoration: none;
color: gray;
}
footer div>h2{
font-size: 20px;
color: rgb(51, 51, 51);
font-weight: lighter;
}
footer div>div>input{
height: 40px;
width: 200px;
border: none;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
footer div>div>button{
height: 40px;
width: auto;
border: none;
color: white;
border-radius: 8px;
padding: 0 15px;
background-color: rgb(196, 159, 91);
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
footer div>div>button:hover{
background-color: black;
}
footer a>p:hover{
color: rgb(244, 182, 66);
}
footer>#footLogo{
width: 200px;
}
footer>#footLogo>a{
padding: 10px 10px;
margin: 5px;
font-size: 10px;
border-radius:50%;
background-color: rgb(236, 236, 236);
}
footer>div:last-child{
font-size: 20px;
margin-top: -30px;
margin-left: 40%;
}
</style>
<script src="https://kit.fontawesome.com/d794204cca.js" crossorigin="anonymous"></script>
<body>
<div id="top">AVAILABLE NOW - THE AWESUMMER MAY FAB BAG!</div>
<div id="navbar">
<h2>SUBSCRIBE NOW</h2>
<a href="/index.html"><img id="front" src="https://cdn.shopify.com/s/files/1/0052/7551/6995/files/FABBAG-LOGO_96ac9306-4c81-4ab8-8d2b-4e818eed7f76_2048x.png?v=1606482289" alt=""></a>
<div>
<i class="fa-solid fa-magnifying-glass"></i>
<i class="fa-solid fa-heart"></i>
<a id="currUser" href="/signup.html"><i class="fa-regular fa-user"></i></a>
<a href="/cartPage.html"><i class="fa-solid fa-cart-shopping"></i></a>
</div>
</div>
<div id="container">
<div id="contact">
<h4>Contact Us</h4>
<form id="forms">
<input id="name" type="text" placeholder="Enter name" />
<input id="email" type="text" placeholder="Enter Email" />
<input id="comment" type="text" placeholder="Your Comment"/>
</form>
<div id="buttn">
<button class="btn" type="button">SEND MSSAGE</button>
</div>
</div>
<div id="contact1">
<h2>We Want To Hear From You And We're Happy To Help!</h2>
<br>
<p><strong>Mail us on </strong><a href="mailto:[email protected]">[email protected]</a></p>
<p><strong>Call :</strong> <a href="022-6805-6010 ">022-6805-6010 </a></p>
<p>(Monday to Friday : 9 AM - 7 PM).</p>
<br>
<p><strong>Office Address :</strong>
A-004, Boomerang Business Park,
<br>
Chandivali Farm Road, Powai.
<br>
Mumbai - 400072.
<br>
Maharashtra.
IN.</p>
</div>
</div>
<div id="shadow"></div>
<footer>
<div>
<div>
<h2>INFORMATION</h2>
<a href="/about.html"><p>About Us</p></a>
<a href="/associatebranda.html"><p>Associated Brands</p></a>
<a href="/faq.html"><p>FAQ</p></a>
<a href="/colaborate.html"><p>Collaborate with Fab Bag</p></a>
<a href="/contactUs.html"><p>Contact Us</p></a>
<a href="/return.html"><p>Returns & Refunds</p></a>
<a href="/terms.html"><p>Terms & Conditions</p></a>
<a href="/Private.html"><p>Privacy Policy</p></a>
</div>
<div>
<h2>CUSTOMER CARE</h2>
<p>Call : 022-6805-6010 <br> (Monday to Friday : 9 AM - 7 PM).</p>
<p>Mail : [email protected]</p>
</div>
<div>
<h2>NEWSLETTER</h2>
<p>Signup for the latest offers, updates and news</p>
<div>
<input type="text" placeholder="Your mail address">
<button>SUBSCRIBE</button>
</div>
<p>Don’t worry we don’t spam</p>
</div>
</div>
<div id="footLogo">
<a href="http://facebook.com/fabbag"><i class="fa-brands fa-facebook-f"></i></a>
<a href="https://twitter.com/thefabbag"><i class="fa-brands fa-twitter"></i></a>
<a href="https://instagram.com/thefabbag/"><i class="fa-brands fa-instagram"></i></a>
<a href="https://www.youtube.com/fabbag"><i class="fa-brands fa-youtube-square"></i></a>
</div>
<div>Copyright © 2021 fabbag.com All rights reserved.</div>
</footer>
</body>
</html>
<script>
const currentUser = JSON.parse(localStorage.getItem("currentUser"));
if(currentUser!==null){
document.getElementById('currUser').innerHTML = currentUser;
}
</script>