-
Notifications
You must be signed in to change notification settings - Fork 0
/
products-search.html
160 lines (141 loc) · 6.13 KB
/
products-search.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!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>Product Page</title>
<!-- <link rel="stylesheet" href="forms.css"> -->
<link rel="stylesheet" href="search.css">
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav>
<!-- <a href="#home"><img id="logo" src="logo-removebg-preview.png" alt=""></a> -->
<a href="#home"><img id="logo" src="logo-small.png" alt=""></a>
<ul id="navlist">
<li><a href="#learnmore">Learn More</a></li>
<li><a href="#about">About</a></li>
<li><a href="mailto:[email protected]">Contact</a></li>
</ul>
<span id="iconwrapper">
<a href="#profile" class="iconholder">
<img class="icon" src="user-48.png" alt="">
<span>Profile</span>
</a>
<a href="shopping_cart.html" class="iconholder">
<img class="icon" src="cart-5-48.png" alt="">
<span>Cart</span>
</a>
</span>
</nav>
<div class="container">
<div id="filters">
<form action="#">
<h1>Filters</h1>
<span class="searchbar">
<input type="text" placeholder="Search keyword(s)">
</span>
<div><label>Supplier:</label>
<select>
<option value="" disabled selected hidden>Select supplier</option>
<option value="1">Supplier #1</option>
<option value="2">Supplier #2</option>
<option value="3">Supplier #3</option>
<option value="4">Supplier #4</option>
</select>
</div>
<div>
<label>Max price:</label>
<div class="slider">
0€<input type="range" min="0" max="1000" value="250">1000€
</div>
</div>
<div>
<label>Rating:</label>
<div class="stars">
<span>
<input type="checkbox">
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</span>
<span>
<input type="checkbox">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</span>
<span>
<input type="checkbox">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</span>
<span>
<input type="checkbox">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
</span>
<span>
<input type="checkbox">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</span>
</div>
</div>
<div class="button buttonwrapper">
<button type="submit" style="background-color:white">Reset</button>
<button type="submit">Apply</button>
</div>
</form>
<!-- <img src="ad.png" alt=""> -->
</div>
<div class="productwrapper">
<div class="product">
<h3>Product #1</h3>
<span><img src="product-nobg.png" alt=""></span>
<button>Add to cart</button>
</div>
<div class="product">
<h3>Product #2</h3>
<span><img src="product-nobg.png" alt=""></span>
<button>Add to cart</button>
</div>
<div class="product">
<h3>Product #3</h3>
<span><img src="product-nobg.png" alt=""></span>
<button>Add to cart</button>
</div>
<div class="product">
<h3>Product #4</h3>
<span><img src="product-nobg.png" alt=""></span>
<button>Add to cart</button>
</div>
<div class="product">
<h3>Product #5</h3>
<span><img src="product-nobg.png" alt=""></span>
<button>Add to cart</button>
</div>
<div class="product">
<h3>Product #6</h3>
<span><img src="product-nobg.png" alt=""></span>
<button>Add to cart</button>
</div>
</div>
</div>
</body>
</html>