-
Notifications
You must be signed in to change notification settings - Fork 0
/
dining_room.html
360 lines (332 loc) · 13.4 KB
/
dining_room.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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop</title>
<link rel="stylesheet" href="stylesheet/home.css">
<link rel="stylesheet" href="stylesheet/login_signin.css">
<link rel="stylesheet" href="stylesheet/script.js">
<link rel="stylesheet" href="stylesheet/shop.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<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>Website with Login & Registration Form</title>
<link rel="stylesheet" href="stylesheet/login_signin.css" />
<!-- Unicons -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" />
</head>
<body>
<section id = 'header'>
<a href="#" id="logo">CozyCove</a>
<div>
<ul id ='navbar'>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html" class= "active">Shop</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="cart.html"><i class="fa fa-shopping-cart" aria-hidden="true"></i></a></li>
<!-- <li><a href="login_signin.html"><i class="ph ph-user"></i> Log In</a></li> -->
<button class="button" id="form-open">Login</button>
</ul>
</div>
</section>
<!-- Home -->
<section class="home">
<div class="form_container">
<i class="uil uil-times form_close"></i>
<!-- Login From -->
<div class="form login_form">
<form action="#">
<h2>Login</h2>
<div class="input_box">
<input type="email" placeholder="Enter your email" required />
<i class="uil uil-envelope-alt email"></i>
</div>
<div class="input_box">
<input type="password" placeholder="Enter your password" required />
<i class="uil uil-lock password"></i>
<i class="uil uil-eye-slash pw_hide"></i>
</div>
<div class="option_field">
<span class="checkbox">
<input type="checkbox" id="check" />
<label for="check">Remember me</label>
</span>
<a href="#" class="forgot_pw">Forgot password?</a>
</div>
<button class="button">Login Now</button>
<div class="login_signup">Don't have an account? <a href="#" id="signup">Signup</a></div>
</form>
</div>
<!-- Signup From -->
<div class="form signup_form">
<form action="#">
<h2>Signup</h2>
<div class="input_box">
<input type="email" placeholder="Enter your email" required />
<i class="uil uil-envelope-alt email"></i>
</div>
<div class="input_box">
<input type="password" placeholder="Create password" required />
<i class="uil uil-lock password"></i>
<i class="uil uil-eye-slash pw_hide"></i>
</div>
<div class="input_box">
<input type="password" placeholder="Confirm password" required />
<i class="uil uil-lock password"></i>
<i class="uil uil-eye-slash pw_hide"></i>
</div>
<button class="button">Signup Now</button>
<div class="login_signup">Already have an account? <a href="#" id="login">Login</a></div>
</form>
</div>
<script>
const formOpenBtn = document.querySelector("#form-open"),
home = document.querySelector(".home"),
formContainer = document.querySelector(".form_container"),
formCloseBtn = document.querySelector(".form_close"),
signupBtn = document.querySelector("#signup"),
loginBtn = document.querySelector("#login"),
pwShowHide = document.querySelectorAll(".pw_hide");
formOpenBtn.addEventListener("click", () => home.classList.add("show"));
formCloseBtn.addEventListener("click", () => home.classList.remove("show"));
pwShowHide.forEach((icon) => {
icon.addEventListener("click", () => {
let getPwInput = icon.parentElement.querySelector("input");
if (getPwInput.type === "password") {
getPwInput.type = "text";
icon.classList.replace("uil-eye-slash", "uil-eye");
} else {
getPwInput.type = "password";
icon.classList.replace("uil-eye", "uil-eye-slash");
}
});
});
signupBtn.addEventListener("click", (e) => {
e.preventDefault();
formContainer.classList.add("active");
});
loginBtn.addEventListener("click", (e) => {
e.preventDefault();
formContainer.classList.remove("active");
});
</script>
</div>
</section>
<script src="script.js"></script>
<div class="marquee">
<p>Welcome To CozyCove!! All The Notice & Discount Can Be Post Here</p>
</div>
<section id="header_banner">
<img src="img/header_banner.webp" alt="">
</section>
<hr color="#DCB579" size="20" width="100%">
<section id="cate-banner" class="section-p1">
<div class="banner-box">
<a href="living_room.html">
<img src="img/home.png" alt="">
</a>
<h6>Living Room</h6>
</div>
<div class="banner-box">
<a href="dining_room.html">
<img src="img/office.png" alt=""></a>
<h6>Dining Room</h6>
</div>
<div class="banner-box">
<a href="kitchen_room.html">
<img src="img/office.png" alt=""></a>
<h6>Kitchen Room</h6>
</div>
<div class="banner-box">
<a href="bedroom.html">
<img src="img/hospital.png" alt=""></a>
<h6>Bedroom</h6>
</div>
<div class="banner-box">
<a href="interior.html">
<img src="img/office.png" alt=""></a>
<h6>Interior</h6>
</div>
<div class="banner-box">
<a href="office.html">
<img src="img/office.png" alt=""></a>
<h6>Office</h6>
</div>
<div class="banner-box">
<a href="institutional.html">
<img src="img/office.png" alt=""></a>
<h6>Institutional</h6>
</div>
</section>
<hr color="#DCB579" size="20" width="100%">
<section class="cate-headline">
<p>Dining Room Collection<hr color="black" size="1" width="100%"></p>
<div class="product-card section-p1">
<div class="prod-container">
<div class="product">
<img src="img/livingC2.jpg" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/home.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/livingC1.jpg" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/home.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
<div class="product">
<img src="img/office.png" alt="">
<div class="description">
<h3>Office Chair</h3>
<h4>BDT 10000</h4>
</div>
<a href="#"><i class="ph ph-shopping-cart cart"></i></a>
</div>
</div>
</div>
</section>
<section id="pagination" class="section-p1">
<a href="#">1</a>
<a href="#">2</a>
<a href="#"><i class="ph ph-arrow-right"></i></a>
</section>
<footer class="footer">
<div class="col">
<p id="logo">CozyCove</p>
</div>
<div>
<h4>Official Address</h4>
<p><strong><i class="ph-bold ph-house"></i> Address: </strong>Mohammadpur, Dhaka, Bangladesh</p>
<p><strong><i class="ph-bold ph-phone"></i> Phone Number: </strong>+880 1234567890</p>
<p><strong><i class="ph-bold ph-envelope-simple"></i> Gmail: </strong>[email protected]</p>
</div>
<div class="col">
<h4>Our Company</h4>
<a href="#">About CozyCove</a>
<a href="#">Terms & Conditions</a>
<a href="#">Privacy Policy</a>
<a href="#">Return Policy</a>
</div>
<div class="col">
<h4>More Information</h4>
<a href="#">Contact Us</a>
<a href="#">Need Help?</a>
</div>
</footer>
<div class="follow">
<h4><strong>Follow Us</strong></h4>
<div class="social-icons">
<img src="img/icon_facebook.png">
<img src="img/icons-insta.png">
<img src="img/icon-google.png">
</div>
</div>
</body>
</html>