-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrushes.html
More file actions
139 lines (122 loc) · 6.27 KB
/
Copy pathbrushes.html
File metadata and controls
139 lines (122 loc) · 6.27 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!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">
<link rel="shortcut icon" href="./images/fav-icon.png" type="image/x-icon">
<link rel="stylesheet" href="./styles/makeup.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/footer.css">
<link rel="stylesheet" href="./styles/login.css">
<link rel="stylesheet" href="./styles/product.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<title>SEPHORA - BRUSHES</title>
</head>
<body>
<!-- ? Navbar Start -->
<nav id="navbar">
</nav>
<!-- ? Navbar End -->
<div id="content">
<div id="img_div">
<img id="makeup_img"
src="https://logan.nnnow.com/content/dam/nnnow-project/27-sep-2021/Tools_BrushesDesktop.jpg"
alt="">
</div>
<div id="lhs_shop">
<div id="category">
<h2>SHOP</h2>
<p>BRUSHES</p>
<p>TOOLS</p>
<p>VEGAN</p>
</div>
<div id="rhs_product">
<!-- ?================================================================================ -->
<div class="product-slider-sperator">
<img src="https://logan.nnnow.com/content/dam/nnnow-project/16-april-2020/makeup/13APR20_MAKEUP_CB_STRIP1_DESK_1.jpg"
alt="">
</div>
<div class="slider-cover slider-cover1">
<div class="product-slider-btn" id="product-slider-next">
<span class="material-symbols-outlined">
arrow_forward_ios
</span>
</div>
<div class="product-slider-btn" id="product-slider-prev">
<span class="material-symbols-outlined">
arrow_back_ios_new
</span>
</div>
<section id="product-slider">
<section id="product-container">
<!-- -->
</section>
</section>
</div>
<!-- ?================================================================================ -->
<!-- -->
<div class="product-slider-sperator">
<img src="https://logan.nnnow.com/content/dam/nnnow-project/16-april-2020/makeup/13APR20_MAKEUP_CB_STRIP2_DESK_1.jpg"
alt="">
</div>
<!-- -->
<div class="slider-cover slider-cover2">
<div class="product-slider-btn" id="product-slider-next">
<span class="material-symbols-outlined">
arrow_forward_ios
</span>
</div>
<div class="product-slider-btn" id="product-slider-prev">
<span class="material-symbols-outlined">
arrow_back_ios_new
</span>
</div>
<section id="product-slider">
<section id="product-container">
</section>
</section>
</div>
<!-- ?================================================================================ -->
<!-- -->
<div class="product-slider-sperator">
<img src="https://logan.nnnow.com/content/dam/nnnow-project/16-april-2020/makeup/13APR20_MAKEUP_CB_STRIP3_DESK_1.jpg"
alt="">
</div>
<!-- -->
<div class="slider-cover slider-cover3">
<div class="product-slider-btn" id="product-slider-next">
<span class="material-symbols-outlined">
arrow_forward_ios
</span>
</div>
<div class="product-slider-btn" id="product-slider-prev">
<span class="material-symbols-outlined">
arrow_back_ios_new
</span>
</div>
<section id="product-slider">
<section id="product-container">
</section>
</section>
</div>
</div>
</div>
</div>
<!-- ?footer Start -->
<footer id="footer">
</footer>
<!-- ?footer End -->
<!-- ? LOGIN START -->
<div id="loginComponent">
<!-- -->
</div>
<!-- ? LOGIN END -->
<script src="./scripts/index.js" type="module"></script>
<script src="./scripts/login.js" type="module"></script>
<script src="./scripts/makeup.js"></script>
</body>
</html>