-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
361 lines (289 loc) · 8.68 KB
/
footer.php
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
<!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">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<title>Footer</title>
</head>
<style>
@font-face {
font-family: 'Lucida Fax';
src: url(fonts/Lucida\ Fax\ Regular.ttf);
}
@font-face {
font-family: 'proxima nova';
src: url(fonts/Proxima\ Nova\ Regular.ttf);
}
/* ------------------------------------------------------------------------------------------------ */
.footer {
background-color: #142f61;
color: white;
}
.footer1234 {
font-family: 'Lucida Fax', Arial, Helvetica, sans-serif;
font-style: italic;
font-weight: 600;
font-size: calc(15px + 0.1vw);
}
.footer234 {
padding-top: 25px;
}
.footer2 form input[type=submit] {
background: #5c726a;
border: none;
padding: 3px 15px;
border-radius: 10px;
color: #fff;
margin-top: 9px;
margin-left: 6px;
height: 32px;
font-family: 'Lucida Fax', Arial, Helvetica, sans-serif;
font-style: italic;
font-weight: 600;
}
.footer2 form input[type=submit]:hover{
background-color: #d1d4d3;
color: black;
}
.footer2 form input[type=email] {
width: 330px;
height: 30px;
border: none;
border-radius: 3px;
margin-top: 9px;
}
.footer3 span {
margin-left: 5px;
padding: 0;
}
.footer3 a {
background: #d1d3d2;
width: 28px;
height: 28px;
border-radius: 50%;
padding: 0px 1px;
margin: 3.5px 0.5vw;
font-size: 20px;
}
.footer3 a:hover{
background-color: white;
}
.footer3 a i {
color: #142f61;
padding-left: 4.5px;
padding-bottom: px;
}
.copyright {
border-top-style: solid;
border-color: white;
border-width: 3.5px;
font-size: calc(17px + 0.1vw);
font-family: 'proxima nova', Arial, Helvetica, sans-serif;
font-weight: lighter;
}
/* ----------------------------------------------------------------------------------------------------------- */
@media (max-width: 1400px) {
.footer2 form input[type=submit] {
font-weight: 600;
}
.footer2 form input[type=email] {
width: 310px;
}
}
@media (max-width: 1200px) {
.footer2 form input[type=email] {
width: 300px;
}
}
@media (max-width: 992px) {
.footer1 {
margin-bottom: -28px;
}
.footer34 {
display: grid;
justify-content: center;
}
.footer3 {
margin-right: 150px;
}
.copyright {
margin-top: -20px;
}
}
@media (max-width: 768px) {
.footer2 form input[type=email] {
width: 360px;
}
.footer1 {
display: grid;
justify-content: center;
margin-bottom: -22px;
}
.logo {
margin-right: 12px;
margin-top: -12px;
}
.footer34 {
display: grid;
justify-content: center;
}
.footer3 {
margin-right: 20px;
width: 250px;
}
.copyright {
margin-top: -20px;
}
.footer3 a {
width: calc(20px + 0.3vw);
height: calc(20px + 0.3vw);
padding: 0px 1px;
margin: 3.5px 0.9vw;
font-size: calc(13px + 0.3vw);
}
.footer3 a i {
color: #142f61;
padding-left: 4.5px;
padding-bottom: px;
}
.footer2 form input[type=submit] {
height: 34px;
}
.footer2 form input[type=email] {
height: 32px;
}
}
@media (max-width: 576px) {
.footer1 {
display: grid;
justify-content: center;
margin-bottom: -24px;
}
.logo {
margin-right: 9px;
margin-top: -14px;
}
.footer2 form input[type=submit] {
width: 60%;
}
.footer2 form input[type=email] {
width: 80%;
}
.footer3 {
margin-right: 20px;
width: 250x;
margin-left: 4%;
}
.copyright {
margin-top: -25px;
}
}
@media (max-width: 300px) {
.footer3 {
margin-right: 02px;
width: 250x;
margin-left: 4%;
}
.copyright {
margin-top: -15px;
}
}
.upload {
background-color: #142f61;
font-weight: bold;
font-size: large;
border: none;
color: rgb(255, 255, 255);
}
.upload:focus {
box-shadow: none;
background-color: #142f61;
}
.upload:hover {
background-color: #1d345f;
}
.savechanges{
background-color:#142F61;
font-weight: bold;
border: none;
}
.savechanges:focus{
box-shadow: none;
background-color: #142F61;
}
.savechanges:hover{
background-color:#1d345f;
}
.dropdownbtn {
background-color: #142f61;
font-weight: bold;
border: none;
}
</style>
<!-- ----------------------------------------------------------------------------------------------------- -->
<body>
<!-- footer code start here ------------------------------------------------->
<div class="footer">
<div class="container">
<div class="row pt-4">
<!-- --------------------footer1 -------------------------------------->
<div class="col-lg-2 col-md-4 text-center footer1 footer1234">
<div class="row">
<div class="col logo">
<img src="images/logo_footer.png" alt="QuickFIX" width="130">
</div>
<div class="col mt-2 mb-3">
<span>
Your Needs <br>
Our Priorities
</span>
</div>
</div>
</div>
<!------------------------------ footer2 --------------------------------->
<div class="col text-center footer234 footer2 footer1234">
<span>
Join the conversation, Subscribe to receive
<br>
emails for events, updates and offers.
</span>
<form action="" class="">
<input type="email" id="subscribe" name="subscribe">
<input type="submit" class="" value="SUBSCRIBE">
</form>
</div>
<!------------------------- footer 3&4 ----------------------------------------->
<div class="col-lg-4 footer234 footer34 footer1234">
<div class="row" style="min-height: 100px;">
<div class="col footer3 pb">
<div class="row">
<span>Follow us</span>
</div>
<div class="row">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
</div>
</div>
<div class="col footer34 footer4">
<span>Call us
<br>
0212223456</span>
</div>
</div>
</div>
</div>
<div class="row">
<span class="text-center mb-2 copyright pt-1">
Copyright ©2021 QuickFIX. All rights reserved
</span>
</div>
</div>
</div>
</body>
</html>