-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakeUp.html
84 lines (60 loc) · 2.29 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">
<title>Makeup Page</title>
<link rel="stylesheet" href="makeup.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="head">
<img src="https://www.beautybebo.com/pub/media/ads/ad-mobile.jpg" alt="er">
</div>
<div id="nav">
<img id="wid" src="beauty Beasts (1).jpg" alt="">
<h3 id="text"><i>BEAUTYBEASTS</i></h3>
<div class="input">
<input type="text" oninput="ppp()" placeholder="Serch by name">
<button title="search">search</button>
</div>
<div class="reg">
<a href="./register.html"><i class="fa fa-hand-o-up" style="font-size:18px"></i>Register</a>
<a href="./signin.html">Sign In</a>
</div>
</div>
<div class="main">
<div id="navbar">
<div class="left">
<a href="./index.html">Home</a>
<a href="./makeUp.html">MakeUp</a>
<a href="./skin.html">Skin</a>
<a href="./hair.html">Hair</a>
<a href="./personal.html">Personal Care</a>
<a href="./mom.html">Mom & Baby Care</a>
<a href="./fragrence.html">Fragrance</a>
<a href="./ayurveda.html">Ayurveda</a>
<a href="./brands.html">Brands</a>
</div>
<div class="right">
<a href="./cart.html">Cart</a>
<!-- <h2 id="cartCount"></h2> -->
</div>
</div>
</div>
<select onchange="handle()" id="selector">
<option value="Blush">Blush</option>
<option value="Contour">Contour</option>
<option value="BB Cream">BB Cream</option>
<option value="Bronzer">Bronzer</option>
<option value="Consealer">Consealer</option>
</select>
<select onchange="hand()" id="sorting">
<option value="LTH">Low To High</option>
<option value="HTL">High To Low</option>
</select>
<div id="container"></div>
</body>
</html>
<script src="./script/makeup.js"></script>