-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.html
90 lines (90 loc) · 3.91 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
<!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>Footer</title>
<link rel="stylesheet" href="style/footer.css" />
<link rel="stylesheet" href="style/nav.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
/>
</head>
<body>
<footer>
<div>
<div>
<div>
<ul>
PRODUCT CATEGORIES
<li><a href="#">Smartphones</a></li>
<li><a href="#">Laptops</a></li>
<li><a href="#">DSLR Cameras</a></li>
<li><a href="#">Televisions</a></li>
<li><a href="#">Air conditioners</a></li>
<li><a href="#">Refrigerators</a></li>
<li><a href="#">Kitchen Applinces</a></li>
<li><a href="#">Accessories</a></li>
<li><a href="#">Personal Care and & Grooming</a></li>
</ul>
</div>
<div>
<ul>
SITE INFO
<li><a href="#">About Reliance Digital</a></li>
<li><a href="#">resQ Services</a></li>
<li><a href="#">Site Map</a></li>
<li><a href="#">Gift Cards</a></li>
<li><a href="#">Corporate Enquires</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
<div>
<ul>
RESOURCE CENTRE
<li><a href="#">Product Reviews</a></li>
<li><a href="#">Buying Guidesa</li>
<li><a href="#">How Tos</a></li>
<li><a href="#">Featured Stories</a></li>
<li><a href="#">Events and Happenings</a></li>
</ul>
</div>
<div>
<ul>
POLICIES
<li><a href="#">Terms Of Use</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">Cancellation and return policy</a></li>
<li><a href="#">Pricing and payment policy</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">E-waste policy</a></li>
<li><a href="#">EMI and additional cashback T&C</a></li>
<li><a href="#">RelianceOne Loyalty Program T&C</a></li>
</ul>
</div>
</div>
<div id="social-hand">
<div>
<h3>FOLLOW US</h3>
<a href="http://www.facebook.com/pages/Reliance-Digital/123437217685421"><i class="fa-brands fa-facebook-square"></i></a>
<a href="http://www.twitter.com/reliancedigital"><i class="fa-brands fa-twitter"></i></a>
<a href="https://www.youtube.com/reliancedigital"><i class="fa-brands fa-youtube"></i></a>
</div>
<div>
<h3>EXPERIENCE RELIANCE DIGITAL APP ON MOBILE</h3>
<a href="https://play.google.com/store/apps/details?id=in.digital.reliance"><img src="https://www.reliancedigital.in/build/client/images/google_play_store.png" ></a>
<a href="https://apps.apple.com/in/app/reliance-digital-shopping-app/id1513379107"><img src="https://www.reliancedigital.in/build/client/images/ios_app_store_icon.png"></a>
</div>
</div>
</div>
<!-- Disclamer porton -->
<div id="discl">
<p>Disclaimer</p>
<p>Product prices, offers and availability are subject to change from time to time. All prices are inclusive of taxes. Product colours & images are only for illustration and they may not exactly match with the actual product. Product specs are subject to change & may vary from actual product. While every care is taken to avoid inaccuracies in content, these are provided as is, without warranty of any kind.</p>
<p>© 2022 Reliance Digital. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>