-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (105 loc) · 4.64 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EverShade: Where every shade meets sustainanability</title>
<link rel="stylesheet" href="./styles/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
</head>
<body>
<!-- top navbar -->
<div id="nav">
</div>
<!-- bottom navbar -->
<div id="bottom-nav">
<div class="nav-ele">New</div>
<div class="nav-ele">Brands</div>
<div class="nav-ele">Makeup</div>
<div class="nav-ele">Skincare</div>
<div class="nav-ele">Hair</div>
<div class="nav-ele">Fragrance</div>
<div class="nav-ele">Tools & Brushes</div>
<div class="nav-ele">Mini Size</div>
</div>
<!-- top offers section -->
<div class="cards-container" id="offer-cards">
<div class="card offer-card">
<img src="https://www.sephora.com/contentimages/2024-12-31-slotting-bestsellers-v2-site-rwd-home-page-hero-banner-US-handoff_01.jpg?imwidth=1090"
alt="Card Image">
<div>
<h3>Bestselling Beauty</h3>
<p>These fan faves are worth the hype</p>
</div>
</div>
<div class="card offer-card">
<img src="https://www.sephora.com/contentimages/2024-12-26-sos-eoys-bundle-a-site-desktop-mobile-app-home-page-rwd-hero-banner-sos-1200x800-us-can-kohls-final.jpg?imwidth=1090"
alt="Card Image">
<div>
<h3>Save even more on top beauty</h3>
<p>Use the code EXTRA20 for a 20% discount</p>
</div>
</div>
<div class="card offer-card">
<img src="https://www.sephora.com/contentimages/2024-12-31-tatcha-brightening-vitamin-c-serum-and-vitamin-c-eye-cream-site-app-home-page-rwd-hero-banner-1200x800-en-us-can.jpg?imwidth=1090"
alt="Card Image">
<div>
<h3>Just in from Tactcha</h3>
<p>Tatcha dullness and dark circles with this eye cream</p>
</div>
</div>
<div class="card offer-card">
<img src="https://www.sephora.com/contentimages/2024-12-27-slotting-just-arrived-v3-site-rwd-home-page-hero-banner-english-DAE-US-handoff_01.jpg?imwidth=1090"
alt="Card Image">
<div>
<h3>The latest line-up</h3>
<p>New beauty from the hottest brands</p>
</div>
</div>
</div>
<!-- New Arrivals -->
<div><h4>New Arrivals</h4></div>
<div id="new-arrivals" class="cards-container">
</div>
<!-- Beauty Insider Rewards -->
<div><h4>Beauty Insider Rewards</h4></div>
<div id="insider-awards" class="cards-container">
</div>
<!--last set of cards -->
<div id="footer-cards">
<div class="card footer-card">
<img src="https://www.sephora.com/contentimages/2023-06-02-RWD-homepage-site-desktop-mobile-home-page-marketing-banner-800x534-dei-release.jpg?imwidth=800"
alt="Card Image">
<div>
<h3>Diversity, Equality & Inclusion</h3>
<p>Our commitment to providing an inclusive beauty community</p>
</div>
</div>
<div class="card footer-card">
<img src="https://www.sephora.com/contentimages/2024-06-15-AltPayments-site-desktop-rwd-home-page-marketing-banner-us-image-only.jpg?imwidth=800"
alt="Card Image">
<div>
<h3>Shop now, pay later</h3>
<p>Split your purchase into convenient payments</p>
</div>
</div>
<div class="card footer-card">
<img src="https://www.sephora.com/contentimages/2024-omni-journey-der-a-site-desktop-mobile-app-home-page-rwd-marketing-banner-omni-us-can-final.jpg?imwidth=800"
alt="Card Image">
<div>
<h3>Beauty on demand</h3>
<p>Fast and easy options that work for you and your needs</p>
</div>
</div>
</div>
<div id="footer-div">
</div>
</body>
<script src="./scripts/navbar.js" type="module"></script>
<script src="https://www.gstatic.com/firebasejs/9.17.1/firebase-app.js" type="module"></script>
<script src="https://www.gstatic.com/firebasejs/9.17.1/firebase-firestore.js" type="module"></script>
<script src="./scripts/index.js" type="module"></script>
<script src="./scripts/footer.js"></script>
<script src="./scripts/cartWishlist.js" type="module"></script>
<script src="./scripts/products.js" type="module"></script>
</html>