forked from anshxika/chammuch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.html
40 lines (40 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css files/footer.css"></link>
<link href="https://fonts.googleapis.com/css2?family=Afacad+Flux:[email protected]&family=DynaPuff:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>Developed by</h4>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="[email protected]">email</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Explore</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Menu.html">Menu</a></li>
<li><a href="privacy_policy.html">privacy policy</a></li>
</ul>
</div>
<div class="footer-col">
<h4>customer review</h4>
<ul>
<li><a href="feedback.html">feedback</a></li>
<li><a href="#">support</a></li>
</ul>
</div>
</div>
<p>© 2024 चमmuch. All rights reserved.</p>
</div>
</footer>
</body>
</html>