forked from naseeb-shah/Masai-Khol-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
119 lines (113 loc) · 4.07 KB
/
footer.html
File metadata and controls
119 lines (113 loc) · 4.07 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
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
<html>
<head>
<link rel="stylesheet" href="/Masai-Khol-Project/css/footer.css">
<style>
body {
margin: 0px;
}
</style>
<script src="https://kit.fontawesome.com/cac5cd5a31.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="mainp">
<div id="top">
<p>⮹</p>
<p>Back To Top</p>
</div>
<div id="containerp">
<div id="social">
<h4>CONNECT<br>WITH US</h4>
<p><i class="fa-brands fa-facebook-f"></i></p>
<p><i class="fa-brands fa-twitter"></i></p>
<p><i class="fa-brands fa-pinterest-p"></i></p>
<p><i class="fa-brands fa-instagram"></i></p>
<p><i class="fa-brands fa-youtube"></i></p>
</div>
<div id="topright">
<div id="app">
<h4>GET OUR<br>APP</h4>
<img src="https://media.kohlsimg.com/is/image/kohls/AppStore-qr_code2020?scl=1&fmt=png8">
</div>
<div id="scantext">
<p>Scan the code to download
the Kohl's App today.</p>
<input type="button" value="Learn More">
</div>
</div>
</div>
<div id="footergrid">
<div class="gridcontent">
<h5>CUSTOMER SERVICE</h5>
<p>Contact Us</p>
<p>Shipping</p>
<p>Returns</p>
<p>Rebates</p>
<p>Recalls</p>
<p>Product Guides</p>
<p>Kohl's Blog</p>
<p>Kohl's Cash</p>
</div>
<div class="gridcontent">
<h5>SHOP KOHL’S</h5>
<p>Get 15% off when you
sign up for our emails</p>
<p>Site Map</p>
<p>Store Locator</p>
<p>Gift Cards</p>
<p>Kohl’s Coupons</p>
</div>
<div class="gridcontent">
<h5>MY ACCOUNT</h5>
<p>Sign In</p>
<p>My Account</p>
<p>Update Password</p>
<p>Order Status</p>
<p>Rewards</p>
<p>Gift Card Balance &
Kohl’s Cash Balance</p>
</div>
<div class="gridcontent">
<h5>KOHL’S CARD</h5>
<p>Benefits</p>
<p>Pay & Manage Card</p>
<p>Apply for a Kohl’s Card</p>
<p>See if you prequalify</p>
</div>
<div class="gridcontent">
<h5>ABOUT KOHL’S</h5>
<p>Our Websites</p>
<p>Community</p>
<p>Diversity & Inclusion</p>
<p>Sustainability</p>
<p>Careers</p>
<p>Apply for Seasonal Jobs</p>
<p>Associate Services</p>
<p>Investor Relations</p>
<p>Affiliate Program</p>
<p>Advertise with Us</p>
</div>
</div>
<div id="disclaimer">
<p>© 2022 Kohl’s, Inc.<br>
KOHL’S® and Kohl’s brand names are trademarks owned by KIN, Inc.<br>
All rights reserved.</p>
<p>Android, Google Play and the Google Play logo are trademarks of Google Inc. App Store is a service mark
of Apple Inc.</p>
<div id="lastline">
<h6><u>Legal Notices</u>, </h6>
<h6><u>Privacy Policy</u>, </h6>
<h6><u>California Privacy Policy</u>, </h6>
<h6><u>CA-Do Not Sell My Personal Information</u>, </h6>
<h6><u>About Our Ads</u>, </h6>
<h6><u>California Transparency in Supply Chains Act</u>.</h6>
</div>
</div>
</div>
</body>
<script>
document.querySelector('#top').addEventListener('click', () => {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
})
</script>
</html>