-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.html
266 lines (243 loc) · 11.2 KB
/
product.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<!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="./css/product.css">
<link rel="stylesheet" href="./css/navbar.css">
<link rel="stylesheet" href="./css/footer.css">
<script src="https://kit.fontawesome.com/0d69f46662.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="page-header">
<div class="header-container">
<div class="Full-header">
<div class="logo-container">
<div class="logo-container-box">
<a class="logo" href="index.html">
<img src="https://www.bialetti.com/media/logo/default/5-layers_3x.png" alt="Bialetti">
</a>
</div>
</div>
<div class="menu-container">
<div class="Header-menu">
<a class="menu-name" href="#">MOKA EXPRESS</a>
</div>
<div class="Header-menu">
<a class="menu-name" href="#">BIALETTI COFFEE ROASTING</a>
</div>
<div class="Header-menu dropdown">
<a href="./product.html">
<button class="dropbtn">PRODUCTS
<i class="fa-solid fa-angle-down"></i>
</button>
</a>
<div class="dropdown-content">
<div class="row">
<div class="column">
<h3 class="column-h3">COFFEE</h3>
<a href="#">Grounds</a>
<a href="#">Coffee beans</a>
</div>
<div class="column">
<div class="vl"></div>
<h3 class="column-h3">COFFEE MAKERS</h3>
<a href="#">Aluminium coffee makers</a>
<a href="#">Stainless steal coffee makers</a>
<a href="#">Special coffee makers</a>
</div>
<div class="column">
<div class="vl"></div>
<h3 class="column-h3">ACCESSORIES</h3>
<a href="#">Small cups and mugs</a>
<a href="#">Coffee accessories</a>
<a href="#">Spare Parts</a>
</div>
<div class="column">
<div class="vl"></div>
<img class="column-img" src="https://www.bialetti.com/media/wysiwyg/moka-express-menu.jpg" alt="Coffee">
</div>
</div>
</div>
</div>
<div class="Header-menu dropdown">
<button class="dropbtn">NEWS
<i class="fa-solid fa-angle-down" id="fa-down"></i>
</button>
<div class="dropdown-content-2">
<div class="column-2">
<a href="#">Small cups and mugs</a>
<a href="#">Coffee accessories</a>
</div>
</div>
</div>
<div class="Header-menu">
<a class="menu-name" href="#">INSPIRATION</a>
</div>
<div class="Header-menu">
<a class="menu-name" href="#">OUR HISTORY</a>
</div>
</div>
<div class="icon-container">
<button id="magniglass" >
<a href="#">
<i class="fa-solid fa-magnifying-glass"></i>
</a>
</button>
<button onclick="document.getElementById('login-form').style.display='block'">
<a href="#">
<i class="fa-solid fa-user"></i>
</a>
</button>
<button>
<a href="#">
<i class="fa-solid fa-cart-plus"></i>
</a>
</button>
<button id = "open" >
<a href="#">
<i class="fa-solid fa-bars"></i>
</a>
</button>
<form id="search-bar" >
<input type="text" id="search" placeholder="Search entire store here...">
</form>
</div>
</div>
</div>
</header>
<div id='login-form'class='login-page'>
<div class="form-box">
<div class='button-box'>
<div id='btn'></div>
<button type='button'onclick='login()'class='toggle-btn'>Log In</button>
<button type='button'onclick='register()'class='toggle-btn'>Register</button>
</div>
<form id='login' class='input-group-login'>
<input type='text'class='input-field' id='login-email' placeholder='Email Id' required >
<input type='password'class='input-field' id='login-pass' placeholder='Enter Password' required>
<span class='input-field-2' id="password-error" style="display:none;color:red;">Email and/or password incorrect.</span>
<input type='checkbox'class='check-box'><span>Remember Password</span>
<button type='submit'class='submit-btn'>Log in</button>
</form>
<form id='register' class='input-group-register'>
<input type='text' id="firstname" class='input-field'placeholder='First Name' required>
<input type='text' id="lastname" class='input-field'placeholder='Last Name ' required>
<input type='email'id="regisemail" class='input-field'placeholder='Email Id' required>
<input type='password' id="resipass" class='input-field'placeholder='Enter Password' required>
<input type='password' id="resirepass" class='input-field'placeholder='Confirm Password' required>
<input type='checkbox'class='check-box' required><span>I agree to the terms and conditions</span>
<span id="email-exists" class='input-field-2' style="display:none;"></span>
<button type='submit'class='submit-btn'>Register</button>
</form>
</div>
</div>
</div>
<div class="w3-sidebar w3-bar-block w3-collapse w3-card w3-animate-left" id="mySidebar">
<button id="closebtn" class="w3-bar-item w3-button w3-large w3-hide-large" >
<i class="fa-solid fa-xmark"></i>
</button>
<a id="sidebar-1a" href="#" class="w3-bar-item w3-button">THE GROUP <i class="fa-solid fa-chevron-down"></i></a>
<a href="#" class="w3-bar-item w3-button">INVESTOR RELATION </a>
<a href="#" class="w3-bar-item w3-button">SUSTAINABILITY <i class="fa-solid fa-chevron-down"></i></a>
<a href="#" class="w3-bar-item w3-button">CAREERS</a>
<a href="#" class="w3-bar-item w3-button">CONTACT US</a>
<div class="follow-logo">
<p>Follow US:</p>
<div><i class="fa fa-facebook" aria-hidden="true"></i></div>
<div><i class="fa fa-instagram" aria-hidden="true"></i></div>
</div>
</div>
<div class="product">
<h1 id="title_heading">
Products
</h1>
<div class="product_container">
<div id="left_container">
<div class="category">
<ul>
<li>Category</li>
<li><a href="">Coffee</a></li>
<li><a href="">Coffee makers</a></li>
<li><a href="">Accessories</a></li>
<li><a href="">Dolce & Gabbana</a></li>
</ul>
</div>
<div class="cups">
<ul>
<li>Cups</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>10</li>
</ul>
</div>
<div class="line">
<ul>
<li>Line</li>
<li><a href="">Bialetti</a></li>
<li><a href="">Coffee makers spare parts</a></li>
<li><a href="">Milk pitcher</a></li>
<li><a href="">Milk frother</a></li>
</ul>
</div>
<div class="roasting">
<ul>
<li>Roasting</li>
<li><a href="">Medium</a></li>
<li><a href="">Light</a></li>
</ul>
</div>
<div class="body">
<ul>
<li>Body</li>
<li><a href="">Persistent</a></li>
<li><a href="">Deep</a></li>
<li><a href="">Enveloping</a></li>
<li><a href="">Medium</a></li>
<li><a href="">Soft</a></li>
</ul>
</div>
<div class="flavor">
<ul>
<li>Flavor</li>
<li><a href="">Cereals</a></li>
<li><a href="">Flowers and dried fruit</a></li>
<li><a href="">Hazelnut</a></li>
<li><a href="">Bitter cocoa</a></li>
<li><a href="">Hazelnut and dried fruit</a></li>
</ul>
</div>
</div>
<div id="right_container">
<div class="sort_items">
<div id="items">6 Items / 12</div>
<div id="sorting">
<select onchange="sortApply()" id="sort">
<option id="default" value="">Sort By Price</option>
<option id="price" value="HTL">High To Low</option>
<option id="" value="LTH">Low To High</option>
</select>
</div>
</div>
<div id="product_container">
</div>
<div id="pagination">
</div>
</div>
</div>
</div>
<footer>
</footer>
<script src="./js/product.js" type="module"></script>
<script src="./js/navbar.js" type="module"></script>
</body>
</html>