-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathempty.html
166 lines (140 loc) · 5.51 KB
/
empty.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!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>wishlist empty</title>
<style>
#heading{
display: flex;
justify-content: center;
align-items: center;
margin-top: 10%;
font-size: xx-large;
}
#backToShop a{
display: flex;
justify-content: center;
align-items: center;
/* margin-top: 40%; */
color: #12284c;
font-size: large;
margin-bottom: 10%;
}
</style>
<script src="https://kit.fontawesome.com/b7836bba55.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="CSS/navbar.css">
<link rel="stylesheet" href="CSS/footer.css">
</head>
<header class="containerHeader">
<nav class="navFlex">
<div class="left">
<a class="m_logo" href="index.html" ><img src="./img/logo.webp" alt="logo"></a>
<ul>
<li><a href="shop.html">SHOP</a></li>
<li><a href="bluerewords.html">NEW!</a></li>
<li><a href="">BRANDS</a></li>
<li><a href="explore.html">EXPLORE</a> </li>
<li><a href="Cache.html">EVENT</a></li>
</ul>
<!-- <div></div>
<div class="shop-button"><button id="hide">
<a id="shop-hover" class="option">SHOP</a>
</button></div>
<div><a class="option">NEW!</a></div>
<div><a class="option">BRANDS</a></div>
<div><a class="option">EXPLORE</a></div>
<div><a class="option">EVENT</a></div>
<div></div>
<i id="nav" class="fa-solid fa-bars"></i> -->
</div>
<div class="right df" >
<input type="text" name="search" placeholder="SEARCH...">
<ul class="df ">
<a class="tag" href="wishList.html"> <img src="./img/wishlist.png" alt="">Wishlist</a>
<a class="tag" href="cart.html"> <img src="./img/bag.png" alt="">Bag</a>
<a class="tag" href="createAccount.html"> <img src="./img/user.png" alt="">SIGN IN / UP</a>
</ul>
</div>
</nav>
</header>
<body>
<div id="heading">
<h2>Wish List Is Empty! <span> 😴</span></h2>
</div>
<br>
<div id="backToShop">
<h4>
<a href="shop.html">Back To The Shop</a>
</h4>
</div>
<!-- Footer Start -->
<footer>
<hr>
<div class="footer_container" >
<div class="social">
<div class="footer_content">
<h2>Get Expert Beauty Insight & Offers</h2>
<input id="input1" type="text" placeholder= "EMAIL ADDRESS →" >
<p>By continuing, you agree to Bluemercury's</p>
<p><a href="">Privacy Notice.</a></p>
</div>
<div class="social_icon">
<a href=""><i class="fa-brands fa-linkedin"></i></a>
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-youtube"></i></a>
<a href=""><i class="fa-brands fa-instagram"></i></a>
</div>
<p>
Copyright 2023 bluemercury. All Rights Reserved.
</p>
</div>
<div class="about_company">
<h2 style="margin: left 10px;">BLUEMERCURY</h2>
<ul>
<li><a href="">Our Company</a></li>
<li><a href="">Store Locator</a></li>
<li><a href="">Events</a></li>
<li><a href="">Spa Menu</a></li>
<li><a href="">Careers</a></li>
<li><a href="">Vendor Submissions</a></li>
<li><a href="">Diversity & Inclusion</a></li>
</ul>
</div>
<div class="account">
<h2>MY ACCOUNT</h2>
<ul>
<li><a href="">My Account</a></li>
<li><a href="">BlueRewards</a></li>
<li><a href="">Gift Card Balance Checker</a></li>
</ul>
</div>
<div class="account">
<h2>CUSTOMER SERVICE</h2>
<ul>
<li><a href="">Contact Us</a></li>
<li><a href="">Help & FAQ</a></li>
<li><a href="">Shipping, Returns & Exchanges</a></li>
<li><a href="">Gift Cards</a></li>
<li><a href="">Offers & Promotions</a></li>
<li><a href="">Klarna</a></li>
</ul>
</div>
<div class="resources">
<h2>RESOURCES</h2>
<ul>
<li><a href="">Terms & Conditions</a></li>
<li><a href="">Privacy Notice</a></li>
<li><a href="">Do Not Sell or Share My Personal Information</a></li>
<li><a href="">CA Privacy Rights</a></li>
<li><a href="">Accessibility</a></li>
<li><a href="">Affiliate Program</a></li>
<li><a href="">Cookie Preferences</a></li>
</ul>
</div>
</div>
</footer>
<!-- Footer End -->
</body>
</html>