-
Notifications
You must be signed in to change notification settings - Fork 3
/
bracelets.html
115 lines (112 loc) · 3.87 KB
/
bracelets.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
<!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>Bracelet-Lovoda</title>
<!-- favicon -->
<link
rel="shortcut icon"
href="https://cdn.shopify.com/s/files/1/0627/7388/7215/files/Favicon_32x32.jpg?v=1650456214"
type="image/x-icon"
/>
<!-- custom css -->
<link rel="stylesheet" href="./styles/navbar.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<link rel="stylesheet" href="./styles/product-list.css" />
<!-- font-awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div id="navbar"></div>
<div id="container">
<div id="heading">
<h1>Bracelets</h1>
</div>
<div id="head-filter">
<div id="first-side">
<p>Filter:</p>
<div id="Price">
<p id="price-filter">
Price <i class="fa fa-angle-down" aria-hidden="true"></i>
</p>
<!-- Filter Popup -->
<div id="price-range">
<div id="price-head">
<p>The highest price is $95.00</p>
<p>reset</p>
</div>
<div id="price-input">
<p>
$
<input
type="text"
placeholder="From"
class="price-input-box"
/>
</p>
<p>
$
<input type="text" placeholder="To" class="price-input-box" />
</p>
</div>
</div>
<!-- Filter Popup Ended-->
</div>
<div id="availibility">
<p>
Availability <i class="fa fa-angle-down" aria-hidden="true"></i>
</p>
<div id="stock-select">
<div id="select">
<p>0 Selected</p>
<p>reset</p>
</div>
<div id="stock">
<p><input type="checkbox" />In Stock</p>
<p><input type="checkbox" />Out of Stock</p>
</div>
</div>
</div>
</div>
<!-- Choose Option -->
<div id="left-head" style="width: 100%">
<div id="left-f">
<div><p>Sort by:</p></div>
<select id="selector">
<option value="Featured" selected>Featured</option>
<option value="Bestselling">Best Selling</option>
<option value="A-Z">Alphabetically, A-Z</option>
<option value="Z-A">Alphabetically, Z-A</option>
<option value="low-to-high">Price, low to high</option>
<option value="high-to-low">Price, high to low</option>
<option value="old-new">Date, old to new</option>
<option value="new-old">Date, new to old</option>
</select>
</div>
<div id="left-s"></div>
</div>
</div>
<div id="product-list">
<!-- Append the all Products Here -->
</div>
<div id="pages">
<a href="javascript:void(0)" class="page">1</a>
<a href="javascript:void(0)" class="page">2</a>
<a href="javascript:void(0)" class="page">3</a>
<a href="javascript:void(0)" class="page">...</a>
<a href="javascript:void(0)" class="page">23</a>
<span class="material-symbols-outlined"> </span>
</div>
</div>
<div id="footer"></div>
</body>
<script src="./scripts/bracelets.js" type="module"></script>
</html>