forked from Shub118/dotandkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoppicks.html
48 lines (44 loc) · 1.65 KB
/
toppicks.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/footer.css">
<link rel="stylesheet" href="./styles/toppicks.css">
<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>Top-Picks</title>
</head>
<body>
<div id="navbar-top">
<u id="navbar-promo-text">3 D&K Bestseller FREE on orders 999+</u>
</div>
<div id="navbar-bottom">
</div>
<div id="navbarmenu">
</div>
<div id="top-div">
<img src="https://cdn.shopify.com/s/files/1/0361/8553/8692/collections/top_picks_1_1944x.jpg?v=1655964483" alt="">
</div>
<h1>TOP PICKS</h1>
<div id="products"></div>
<div id="filter-div">
<select name="filter" id="filter">
<option value="filter">Filter</option>
<option value="serum">Serum</option>
<option value="mask">Mask</option>
<option value="cream">Cream</option>
<option value="moisturizer">Moisturizer</option>
</select>
<select name="Featured" id="sort">
<option value="featured">Featured</option>
<option value="alphabetically,a-z">Alphabetically,A-Z</option>
<option value="alphabetically,z-a">Alphabetically,Z-A</option>
<option value="price,low to high">price,low to high</option>
<option value="price,high to low">price,high to low</option>
</select>
</div>
<div id="toppicks-footer"></div>
</body>
</html>
<script src="./scripts/toppick.js" type="module"></script>