-
Notifications
You must be signed in to change notification settings - Fork 4
/
footer.html
130 lines (109 loc) · 3.34 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
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
120
121
122
123
124
125
126
127
128
129
130
<style>
*{
font-family: 'Lato', sans-serif;
}
.footer {
display: flex;
background-color:whitesmoke;
}
.footer-col{
flex-basis: 250px;
padding:10px;
}
.heading{
font-size: 15px;
font-weight: 700;
}
.ul{
list-style-type: none;
text-align:start;
}
.ul > li{
padding:5px;
font-size: 12px;
}
.ul> li:hover{
text-decoration: underline;
text-decoration-color: black;
text-decoration-thickness: 1px;
}
.footer > p{
flex-basis: 120px;
padding:20px;
font-size: 12px;
}
.footer > p:hover{
text-decoration: underline;
text-decoration-color: black;
text-decoration-thickness: 1px;
}
</style>
<div class="footer">
<div class="footer-col">
<ul class="ul">
<li><label class="heading">Customer Service</label></li>
<li>Contact Us</li>
<li>Order Status</li>
<li>Shipping</li>
<li>Returns & Exchanges</li>
<li>Shipping</li>
<li>Product recalls</li>
<ul>
</div>
<div class="footer-col">
<ul class="ul">
<li><label class="heading">Stores & Events</label></li>
<li>Stores & Events</li>
<li>Carrers</li>
<li>Corporate Responsibility</li>
<li>Diversity Inclusion & Belonging</li>
<li>Get Email Updates</li>
<li>Nordstrom Blog</li>
<ul>
</div>
<div class="footer-col">
<ul class="ul">
<li><label class="heading">Services</label></li>
<li>Personal Styling</li>
<li>Altration & Tailoring</li>
<li>Spa Nordstrom</li>
<li>Nordstrom Restaurants</li>
<li>Gift Cards</li>
<ul>
</div>
<div class="footer-col">
<ul class="ul">
<li><label class="heading">Nordstrom Card</label></li>
<li>Pay My Bill</li>
<li>Manage my Nordstrom Card</li>
<ul>
</div>
<div class="footer-col">
<ul class="ul">
<li><label class="heading">Nordstrom Inc</label></li>
<li>Nordstrom Rack</li>
<li>Nordstrom Canada</li>
<li>Trunk Club</li>
<li>Investor Relations</li>
<li>Press Releases</li>
<ul>
</div>
<div class="footer-col">
<ul class="ul">
<li style="padding:5px"><img src="./images/mobile.svg" alt="facebook" style="width:18px;margin-right:0px;padding:5px"/>Get our apps</li>
<div style="display:flex;gap:15px;margin-top: 20px;">
<img src="./images/insta.svg" alt="facebook" style="width:24px;"/>
<img src="./images/pin.svg" alt="facebook" style="width:24px;"/>
<img src="./images/twitter.svg" alt="facebook" style="width:24px;"/>
<img src="./images/fb.svg" alt="facebook" style="width:24px;"/>
</div>
<ul>
</div>
</div>
<div class="footer" >
<p>Your Privacy Rights</p>
<p>Dont Sell My Info</p>
<p>Terms & Conditions</p>
<p>Intrest Based Ads</p>
<p>©2021 Nordstrom,Inc</p>
</div>