-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
76 lines (72 loc) · 2.39 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
<!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>Document</title>
<link rel="stylesheet" href="./Styles/footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
</head>
<body>
<div id="footer">
<!-- logo and fa-icons -->
<div id="logo">
<div id="logo-div">
<img src="https://in.sugarcosmetics.com/Footer_sugar_icon.svg" alt="logo">
</div>
<div id="fa-icons">
<i class="fab fa-facebook"></i>
<i class="fab fa-tumblr"></i>
<i class="fa-brands fa-youtube"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fa-solid fa-envelope"></i>
<i class="fab fa-pinterest"></i>
</div>
</div>
<!-- second div -->
<div id="store">
<li>Stores</li>
<li>Term&Conditions</li>
<li>Returns</li>
<li>About Us</li>
</div>
<!-- Third div -->
<div id="get-in-touch">
<h2>GET IN TOUCH</h2>
<div id="support">
<div id="call-us">
<h4>Call Us At</h4>
<p>1800-209-9933</p>
<p>Monday to Friday : 9 AM to 7 PM</p>
</div>
<div id="call-us">
<h4>Support</h4>
<p>hello@sugarcosmetics.com</p>
</div>
<div id="career">
<h4>Career</h4>
<p>We are hiring</p>
</div>
<div id="press">
<h4>Press & Media</h4>
<p>pr@sugarcosmetics.com</p>
</div>
<div id="infl">
<h4>Influencer Club</h4>
<p>Join Us</p>
</div>
</div>
</div>
<!-- 3rd div -->
<div id="app">
<h3>Download Our Sugar App</h3>
</div>
<!-- 4th div -->
<div id="copyright">
<p>Copyright © 2022 SUGAR Cosmetics. All rights reserved.</p>
</div>
</div>
</body>
</html>