forked from rbhomale17/CraftsHub-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makeup.html
117 lines (110 loc) · 4.88 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
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
<!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</title>
<link rel="stylesheet" href="/styles/makeup.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
</head>
<body>
<div id="wrapper">
<!-- NAVBAR -->
<div id="discount">GET RS 50 OFF ON ORDERS ABOVE RS 100</div>
<nav class="navbar">
<div class="top-nav">
<div class="logo">
<a href="/index.html"><img src="./2.logos.jpg" alt=""></a>
</div>
<div class="search-bar">
<div class="title">SEARCH</div>
<input type="search" name="" id="search" placeholder="Search here for products in Kolkata">
<div class="search-icon">
<i class="fa fa-search" id="search-btn"></i>
</div>
</div>
<div class="nav-buttons">
<a href="/sign.html" id="sign-in"><i class="fa fa-user"></i> Sign In / Register</a>
<a href="./wishlist.html"> <i class="fa-regular fa-heart"></i> Wishlist</a>
<a href="/Cart.html"> <i class="fa-solid fa-cart-shopping"></i>Cart</a>
</div>
</div>
<div class="bottom-nav">
<a href="#">Stores Near Me</a>
<a href="/product.html">All Products</a>
<a href="/fashion.html">Fashion</a>
<a href="/makeup.html">Beauty & Personal Care</a>
<a href="/home_decor.html">Home Decor</a>
<a href="/electronic.html">Electronics</a>
</div>
</nav>
</div>
<div id="container">
<div class="sort-by">
<label for="sort-by-select"><h3>Sort By:</h3></label>
<select id="sort-by-select" onchange="fetchdata(1, 8, this.value)">
<option value="">Sorting</option>
<option value="low-to-high">Price: Low to High</option>
<option value="high-to-low">Price: High to Low</option>
</select><br><br>
<label for="sort-by-select"><h3>Filter By:</h3></label>
<select name="filter" id="filter">
<option value="">Select Filter</option>
<option value="1000">Price : 1000-2000</option>
<option value="500">Price : 500-1000</option>
<option value="300">Price : 0-500</option>
</select>
</div>
<hr vertical="true">
<div id="product-div"></div>
</div>
<div class="pagination-wrapper" id="pagination-wrapper"></div>
<div id="f-main">
<footer>
<div class="f-cont">
<div class="f-row">
<div class="col" id="about">
<h3>About Us</h3>
<p>India's most convenient online grocery channel Buyerapp Fresh and Smart makes your grocery shopping even simpler. We offer you the convenience of shopping for everything that you need for your home - be it fresh fruits & vegetables, rice, dals, oil, packaged food, dairy item, frozen, pet food, household cleaning items & personal care products from a single virtual store.</p>
<div class="s-media">
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-instagram"></i></a>
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-youtube"></i></a>
</div>
</div>
<div class="col" id="company">
<h3>OUR COMPANY</h3>
<div class="link">
<a href="">About Us</a>
<a href="">Contact Us</a>
</div>
</div>
<div class="col" id="category">
<h3>TOP CATEGORIES</h3>
<div class="link">
<a href="/fashion.html">Fashion</a>
<a href="/electronic.html">Electronics</a>
<a href="#">Grocery</a>
</div>
</div>
<div class="col" id="policy">
<h3>POLICIES & INFO</h3>
<div class="link">
<a href="">Privacy Policy</a>
<a href="">SUPPORT</a>
<a href="">For Help, email to care@craftsvilla.com</a>
</div>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>
<script src="/script/makeup.js"></script>