-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooter.html
159 lines (147 loc) · 5.53 KB
/
Footer.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
<style>
.social-links a {
margin: 0 5px;
text-decoration: none;
}
.languages {
width: 30px;
height: 20px;
border: none;
color: #6c757d !important;
display: inline-flex;
align-self: center;
justify-self: center;
}
.languages i {
font-size: 22px;
}
.footer-links a {
text-decoration: none;
position: relative;
font-weight: normal;
}
.footer-links a::before {
font-family: "Font Awesome 6 Free";
content: "\f061";
font-weight: 900;
margin-right: 10px;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Footer -->
<footer class="text-center text-lg-start bg-light text-muted">
<!-- Section: Social media -->
<section class="d-flex justify-content-center justify-content-lg-between p-4 border-bottom flex-wrap">
<!-- Left -->
<div class="me-3 d-flex flex-wrap align-items-center justify-content-center">
<span class="me-3"><i class="fa-solid fa-phone mx-2"></i>+20 10 505 81448</span>
<span><i class="fa-solid fa-envelope mx-2"></i>[email protected]</span>
</div>
<!-- Left -->
<!-- center -->
<div class="social-links">
<a href="#">
<img src="imgs/facebook.png" alt="facebook page" width="25">
</a>
<a href="#">
<img src="imgs/linkedin.png" alt="facebook page" width="25">
</a>
<a href="#">
<img src="imgs/instagram.png" alt="facebook page" width="25">
</a>
<a href="#">
<img src="imgs/youtube.png" alt="facebook page" width="25">
</a>
</div>
<!-- Right -->
<div>
<span><i class="fa-solid fa-user-gear mx-2"></i>Support Center </span>
<button class="languages ms-2"><i class="fa-solid fa-language"></i></button>
</div>
</section>
<!-- Section: Social media -->
<!-- Section: Links -->
<section class="footer-links">
<div class="container text-center text-md-start mt-5">
<!-- Grid row -->
<div class="row mt-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<!-- Content -->
<h6 class="text-uppercase fw-bold mb-4">
<img src="imgs/Image 2.svg" alt="">
</h6>
<p>
Pellentesque rhoncus tortor non mauris pharetra rutrum. Donec eget lobortis arcu. Duis nunc
justo
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Pages
</h6>
<p>
<a href="#!" class="text-reset">Home</a>
</p>
<p>
<a href="#!" class="text-reset">Products</a>
</p>
<p>
<a href="#!" class="text-reset">Services</a>
</p>
<p>
<a href="#!" class="text-reset">Blog</a>
</p>
<p>
<a href="#!" class="text-reset">Contact</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Product Categoury
</h6>
<p>
<a href="#!" class="text-reset">Machines</a>
</p>
<p>
<a href="#!" class="text-reset">Spare Parts</a>
</p>
<p>
<a href="#!" class="text-reset">Accessories</a>
</p>
<p>
<a href="#!" class="text-reset">Help Center</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mb-md-0 mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Contacts
</h6>
<p><i class="fas fa-home me-3"></i>Adress Line Comes Here</p>
<p><i class="fas fa-phone me-3"></i>+20 105 0581448</p>
<p><i class="fa-solid fa-envelope me-3"></i>[email protected]</p>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
</section>
<!-- Section: Links -->
<!-- Copyright -->
<div class="text-center p-4" style="background-color: rgba(255, 255, 255, 0.842);border-top: 1px solid #e1e1e1;">
© 2020 Copyright
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->