-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakeup.html
84 lines (63 loc) · 2.34 KB
/
makeup.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
<!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="icon" type="image/x-icon" href="https://1000logos.net/wp-content/uploads/2020/07/SUGAR-Cosmetics-Logo1.jpg">
<title>Makeup: Buy Makeup Products</title>
<script
src="https://kit.fontawesome.com/6a99807cc4.js"
crossorigin="anonymous"
></script>
</head>
<link rel="stylesheet" href="./Styles/makeup.css">
<link rel="stylesheet" href="./Styles/navbar.css">
<link rel="stylesheet" href="./Styles/footer.css">
<body>
<div id="navbar">
</div>
<div id="filter">
<img src="https://in.sugarcosmetics.com/desc-images/filterIcon.png" alt="filter">
<span id="filter1">
<select name="" id="select1">
<option value="none">Filter by Brand</option>
<option value="almay">almay</option>
<option value="clinique">clinique</option>
<option value="milani">Milani</option>
<option value="moov"> moov</option>
<option value="covergirl">covergirl</option>
</select>
</span>
<img id="sort" src="https://in.sugarcosmetics.com/desc-images/sortIcon.png" alt="sort">
<span id="filter2">
<select name="" id="select2">
<option value="none">Sort</option>
<option value="htl">High to Low</option>
<option value="lth">Low to High</option>
<option value="rating">rating High to low</option>
</select>
</span>
</div>
<div id="home_btn">
<a href="index.html">
<img id="home" src="https://in.sugarcosmetics.com/desc-images/breadcrumb_home.svg" alt="home_icon">
</a>
<span>/</span>
<a href="makeup.html">
<span id="makeup_page">makeup</span>
</a>
</div>
<div id="header">
<span>Makeup -</span>
<span id="length">data length</span>
</div>
<div id="container">
</div>
</body>
<div id="footer">
</div>
</html>
<script src="/Scripts/common.js" type="module"></script>
<script type="module" src="/Scripts/makeup.js">
</script>