-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.html
More file actions
60 lines (54 loc) · 1.88 KB
/
footer.html
File metadata and controls
60 lines (54 loc) · 1.88 KB
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
<!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/footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<title>Document</title>
</head>
<body>
<footer class="footer">
<div class="container">
<div class="row">
<!-- About Section -->
<div class="footer-col">
<h4>ABOUT</h4>
<img src="./img/greegadgetLogo.jpeg" alt="Green Gadget Logo" class="footer-logo" />
<p>
Green Gadget promotes sustainable e-waste management, empowering responsible recycling for a cleaner planet.
</p>
<a href="privacyPolicy.html" class="footer-link">PRIVACY POLICY</a>
</div>
<!-- Menu Section -->
<div class="footer-col">
<h4>MENU</h4>
<ul>
<li><a href="homepage.html">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Leadership</a></li>
<li><a href="#">Advisory</a></li>
<li><a href="#">Awards</a></li>
<li><a href="#">In News</a></li>
<li><a href="faq.html">FAQ's</a></li>
<li><a href="carrierpage.html">Careers</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<!-- Contact Section -->
<div class="footer-col">
<h4>CONTACT</h4>
<p>Green Gadget Solutions Pvt. Ltd.</p>
<p>123 Green Street, Eco City, India</p>
<p><i class="fas fa-phone"></i> +91 98765-43210</p>
<p><i class="fas fa-envelope"></i> support@greengadget.in</p>
<p>CIN: U12345KA2025PTC67890</p>
</div>
</div>
<div class="footer-bottom">
<p>Copyright © 2025 Green Gadget - Made with ❤️ in India for the World.</p>
</div>
</div>
</footer>
</body>
</html>