-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshopMakeUp.html
105 lines (83 loc) · 3.5 KB
/
shopMakeUp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beaudei - MakeUp and Skincare</title>
<script src="./script/jquery-3.5.1.min.js"></script>
<link rel="stylesheet" href="./style/makeup.css">
</head>
<body>
<div class = "announcement">
<p> FREE DELIVERY WITH NO MINIMUM PURCHASE!! </p>
</div>
<header>
<img src="./assets/logo.png" id="logo" alt="" srcset="">
</header>
<nav>
<div class="dropdown">
<!-- insert menu icon === -->
<div class="dropbtn">
<img src="./assets/menu-black-24dp.svg" alt=""> <span>   MENU</span>
</div>
<div class="dropdown-content">
<a href="home.html">Home</a>
<a href="promotions.html">Promotion</a>
<a href="register.html">Register</a>
<a href="shopMakeUp.html">Shop Make Up</a>
<a href="shopSkinCare.html">Shop Skin Care</a>
</div>
</div>
</nav>
<article>
<h1>Make Up</h1>
<div id="filter-form">
<br>
<form action="" method="post" autocomplete="off" name="filter">
<label for="skinType">Body Part: </label> <br>
<select name="bodypart" id="bodypart">
<!-- <option disabled selected value> Select Body Parts</option> -->
<option value="All">All</option>
<option value="eyes">Eyes</option>
<option value="lips">Lips</option>
<option value="face">Face</option>
<option value="Cheek">Cheek</option>
</select>
<br><br>
<label for="skinType">Product Type: </label> <br>
<select name="producttype" id="producttype">
<!-- <option disabled selected value> Select Product Types</option> -->
<option value="All">All</option>
<option value="serum">Serum</option>
<option value="powder">Powder</option>
<option value="balm">Balm</option>
<option value="moisturizer">Moisturizer</option>
<option value="sets">Sets</option>
</select>
<br><br>
<input type="button" value="APPLY" id="applyBtn" class="btn">
</form>
</div>
<div class="product-list">
<!-- <div class="product-card">
<div class="product-image">
<img src="https://www.sephora.com/productimages/sku/s2350221-main-zoom.jpg?imwidth=162" alt="">
</div>
<div class="product-details">
<h4><a href="">Beaudie's Ultra Face Serum</a></h4>
<span id="body-part" class="product-tag">Face</span>
<span id="product-type" class="product-tag">Serum</span>
<div class="product-bottom-details">
<div class="product-price">Rp79.900</div>
<div class="product-atc"><button> ADD TO CART</button></div>
</div>
</div>
</div> -->
</div>
</article>
<footer>
<p>Copyright © 2020 PT. Beaudie Indonesia, All rights reserved.</p>
</footer>
<script src="./script/shopMakeUp.js"></script>
</body>
</html>