-
Notifications
You must be signed in to change notification settings - Fork 1
/
nav&foot.html
612 lines (605 loc) · 16.5 KB
/
nav&foot.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
<!-- This page will be used for developing the navbar and footer which will then cut and past in
the function deveoped on the nav&foot.js which will be then exported. This can be deleted later.-->
<!-- This html Setup is being used just to check the placment and organization (CSS) of the navbar & footer
so that it will be the same after exporting as weill. -->
<!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>Navbar & Footer</title>
<!-- To show the logo in the title of website -->
<link
rel="icon"
href="https://i.postimg.cc/sG1kG01m/My-Glamm-Logo-1.jpg"
type="image/x-icon"
/>
<link rel="stylesheet" href="./font.css" />
<link rel="stylesheet" href="./nav&foot.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<script
src="https://kit.fontawesome.com/1bec6be586.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div id="navbar">
<!-- <div>
<div>
<div>
<img src="https://www.myglamm.com/images/gift.svg" alt="" />
<p>FLAT 199 Store</p>
<p>SHOP NOW</p>
</div>
<div>
<img src="https://www.myglamm.com/images/shop.svg" alt="" />
<p>MyGlamm Store</p>
</div>
</div>
</div>
<div>
<div>
<img
src="https://files.myglamm.com/site-images/original/MyGlamm-Logo_1.jpg"
alt=""
/>
<div>
<form action="">
<i class="fa-solid fa-magnifying-glass"></i>
<input
type="text"
placeholder="Find Lipstick, Eyeliner etc"
id="search"
oninput="debounce(searchquery,1500)
/>
</form>
</div>
</div>
<div>
<div>
<span class="material-symbols-rounded"> shopping_bag </span>
</div>
<div id="userProfile">
<div>
<span class="material-symbols-rounded" id="open_popup">
person_filled
</span>
</div>
<div class="userOptions">
<p>My Profile</p>
<p>My Orders</p>
<p>My Dashboard</p>
<p>MyGlammXO Party</p>
<button id="log_out">Logout</button>
</div>
</div>
</div>
</div>
<div>
<div class="dropdown">
<p><a href="./nav&foot.html"> HOME </a></p>
</div>
<div class="dropdown">
<p>MAKEUP</p>
<div class="options">
<div>
<div class="nav_1_contents">
<h5 class="nav_1_heading">LIPS</h5>
<p>Lipstick</p>
<p>Liquid Lipstick</p>
<p>Hi-Shine Lipstick</p>
<p>Matte Lipstick</p>
<p>Lip Gloss</p>
<p>Lip Liner</p>
<p>Lip Balm</p>
<p>Lip Glitter</p>
<p>Lip Stain</p>
<p>Lipstick Set</p>
<p>Lip Kit</p>
<p>Find Your Lipstick</p>
</div>
<div class="nav_1_contents">
<h5 class="nav_1_heading">FACE</h5>
<p>Fixing Powder</p>
<p>Primer</p>
<p>Concealer</p>
<p>Foundation</p>
<p>Compact Powder</p>
<p>Setting Powder</p>
<p>Banana Powder</p>
<p>Sindoor</p>
<p>Highlighter</p>
<p>Blush</p>
<p>Bronzer</p>
<p>Cheek Stain</p>
</div>
<div class="nav_1_contents">
<h5 class="nav_1_heading">EYES</h5>
<p>Eye Shadow</p>
<p>Eyeliner</p>
<p>Eyebrows</p>
<p>Glitter</p>
<p>Mascara</p>
<p>Kajal</p>
<p>Eye Combos</p>
</div>
<div>
<div class="nav_1_contents">
<h5 class="nav_1_heading">NAILS</h5>
<p>Nail Lacquer</p>
<p>Nail Polish</p>
<p>Matte Nail Polish</p>
</div>
<div class="nav_1_contents">
<h5 class="nav_1_heading">KITS AND COMBOS</h5>
<p>Makeup Kits</p>
<p>Bridal Makeup Kits</p>
<p>Makeup Gift Sets</p>
</div>
<div class="nav_1_contents">
<h5 class="nav_1_heading">MAKEUP ACCESSORIES</h5>
<p>Makeup Brushes</p>
<p>Eyeshadow Brushes</p>
</div>
</div>
</div>
</div>
</div>
<div class="dropdown">
<p>HAIR CARE</p>
<div class="options">
<div>
<div class="nav_1_contents" type="none">
<h5 class="nav_1_heading">HAIR CARE</h5>
<p>Shampoo</p>
<p>Conditoner</p>
<p>Hair Oil</p>
<p>Serum</p>
<p>Hair Mask</p>
<p>Combos</p>
</div>
</div>
<div>
<div>
<img
src="https://files.myglamm.com/site-images/400x400/Artboard-1-(1).jpg"
alt=""
/>
<p>MYGLAMM SUPERFOODS ONION & MORINGA SHAMPOO - 200ML</p>
<p>For Hair Fall Control</p>
<p>₹269 <s>₹299</s></p>
</div>
<div>
<img
src="https://files.myglamm.com/site-images/400x400/Artboard-1-(1).jpg"
alt=""
/>
<p>MYGLAMM SUPERFOODS ONION & MORINGA SHAMPOO - 200ML</p>
<p>For Hair Fall Control</p>
<p>₹269 <s>₹299</s></p>
</div>
<div>
<img
src="https://files.myglamm.com/site-images/400x400/Artboard-1-(1).jpg"
alt=""
/>
<p>MYGLAMM SUPERFOODS ONION & MORINGA SHAMPOO - 200ML</p>
<p>For Hair Fall Control</p>
<p>₹269 <s>₹299</s></p>
</div>
<div>
<img
src="https://files.myglamm.com/site-images/400x400/Artboard-1-(1).jpg"
alt=""
/>
<p>MYGLAMM SUPERFOODS ONION & MORINGA SHAMPOO - 200ML</p>
<p>For Hair Fall Control</p>
<p>₹269 <s>₹299</s></p>
</div>
</div>
</div>
</div>
<div class="dropdown">
<p>SKIN CARE</p>
<div class="options">
<div>
<div class="nav_1_contents">
<h5 class="nav_1_heading"></h5>
<p>Moisturizer</p>
<p>Night Cream</p>
<p>Eye Cream</p>
<p>Body lotion</p>
<p>Serum</p>
<p>Sunscreen</p>
<p>Skincare Kits</p>
</div>
<div class="nav_1_contents">
<h5 class="nav_1_heading">CLEANSING PRODUCTS</h5>
<p>Cleanser</p>
<p>Face Wash</p>
<p>Exfoliator & Scrub</p>
</div>
<div class="nav_1_contents">
<h5 class="nav_1_heading">MASK</h5>
<p>Sheet Mask</p>
<p>Face Pack</p>
</div>
</div>
</div>
</div>
<div class="dropdown">
<p>SANITIZING CARE</p>
<div class="options">
<div>
<div class="nav_1_contents" type="none">
<h5 class="nav_1_heading">SANITIZING CARE</h5>
<p>Sanitizing Wipes</p>
<p>Hand Sanitizer</p>
<p>Sanitizing Kits</p>
<p>Sanitizing Spray</p>
</div>
<div>
<img
src="https://files.myglamm.com/site-images/400x400/Germ-Shield_2.jpg"
alt=""
/>
<p>GERM SHIELD</p>
<p>25 Sanitizing Wipes + 1 Moisturizing Hand Sanitizer</p>
<p>₹185 <s>₹370</s></p>
</div>
</div>
</div>
</div>
<div class="dropdown">
<p>COLLECTION</p>
<div class="options">
<div>
<div class="nav_1_contents" type="none">
<h5 class="nav_1_heading">SHOP BY COLLECTION</h5>
<p>MyGlamm</p>
<p>SUPERFOODS</p>
<p>Treat Love Care</p>
<p>Clean Beauty</p>
<p>POPxo</p>
<p>WIPEOUT</p>
<p>GLOW Iridescent Brightening Skincare</p>
<p>Manish Malhotra</p>
<p>YOUTHfull</p>
<p>LIT collection</p>
<p>POSE</p>
<p>K.Play</p>
<p>Just Dropped</p>
</div>
</div>
<div>
<div>
<img
src="https://files.myglamm.com/site-images/400x400/Soiree-(1).jpg"
alt=""
/>
<p>Manish Malhotra 9 in 1 Eyeshadow Palatte - Soirée</p>
<p>
Compact Eyeshadow Palette with 9 shades in Matte, Metallic &
Foil Finishes
</p>
<p>₹1295 <s>₹1850</s></p>
</div>
<div>
<img
src="https://files.myglamm.com/site-images/400x400/GGM-(1).jpg"
alt=""
/>
<p>Glow to Glamour Shimmer and Fixing Powder</p>
<p>2 in 1 Shimmer and Fixing Powder</p>
<p>₹836 <s>₹1195</s></p>
</div>
<div>
<img
src="https://files.myglamm.com/site-images/400x400/Tom-Collins_6.jpg"
alt=""
/>
<p>MyGlamm Lit Creamy Matte Lipstick - Tom Collins</p>
<p>Precision Perfect Matte Slimstick</p>
<p>₹386 <s>₹595</s></p>
</div>
</div>
</div>
</div>
<div class="dropdown">
<p>REWARDS</p>
<div class="options"></div>
</div>
<div class="dropdown">
<p>MYGLAMM STUDIO</p>
<div class="options">
<div>
<div class="nav_1_contents" type="none">
<h5 class="nav_1_heading">STUDIO</h5>
<p>Blogs</p>
</div>
</div>
</div>
</div>
<div class="dropdown"><p>OFFERS</p></div>
</div>
<div id="pop_up" class="popUp">
<div>
<div id="close_popup1"><i class="fa-solid fa-x"></i></div>
</div>
<p>Get 15% Good Points back on every order</p>
<div>
<img src="https://www.myglamm.com/images/myglamm-logo.png" alt="" />
</div>
<div>
<p>*Mobile Number</p>
</div>
<div>
<div>
<label for="">COUNRTY CODE</label><br />
<select name="" id="countryCode">
<option value="+91">IND +91</option>
</select>
</div>
<div>
<label for="">*MOBILE NUMBER</label><br />
<input type="tel" name="" id="newUserMobile" />
</div>
</div>
<div>
<button id="newUserSubmit">CONTINUE</button>
<p>By Signing up you agree to our <b> Terms & Conditions </b></p>
</div>
</div>
<div id="pop_up2" class="popUp">
<div>
<p>VERIFY YOUR MOBILE NUMBER TO COMPLETE YOUR REGISTRATION</p>
<div id="close_popup2"><i class="fa-solid fa-x"></i></div>
</div>
<p>
ENTER OTP SENT ON <u><span></span></u>
<img src="https://img.icons8.com/emoji/344/pencil-emoji.png" alt="" />
</p>
<div id="box">
<input id="inputOtp" maxlength="4" />
<div id="timer"></div>
</div>
<div></div>
<div>
<div>
<label for="">NAME</label><br />
<input type="text" placeholder="*Full Name" id="newUserName" />
</div>
<div>
<label for="">EMAIL</label><br />
<input type="email" placeholder="Email Address" id="newUserEmail" />
</div>
</div>
<div>
<button id="newUserVerify">VERIFY</button>
</div>
</div>
<div id="pop_up3" class="popUp">
<div>
<div id="back_popup">
<i class="fa-solid fa-arrow-left"></i>
</div>
<p>VERIFY YOUR MOBILE NUMBER TO COMPLETE YOUR REGISTRATION</p>
<div id="close_popup3"><i class="fa-solid fa-x"></i></div>
</div>
<div>
<img src="https://www.myglamm.com/images/mob-otp.png" alt="" />
</div>
<p>
ENTER OTP SENT ON <u><span></span></u>
<img src="https://img.icons8.com/emoji/344/pencil-emoji.png" alt="" />
</p>
<div id="box">
<input id="inputOtp" maxlength="4" />
<div id="timer"></div>
</div>
<div>
<button id="otpVerify">VERIFY</button>
</div>
</div> -->
</div>
<div id="message_icon">
<i class="fa fa-commenting-o" style="font-size: 40px"></i>
</div>
<div id="footer">
<!-- <div id="footer1">
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">LIPS</h5>
<li>Lipstick</li>
<li>Matte Lipstick</li>
<li>Hi-Shine Lipstick</li>
<li>Liquid Lipstick</li>
<li>Lip Gloss</li>
<li>Hi-Shine Lipgloss</li>
<li>Lip Liner</li>
<li>Lip Balm</li>
<li>Glitter</li>
<li>Lip Stain</li>
<li>Lipstick Set</li>
<li>Lip Kit</li>
<li>Find Your Lipstick</li>
</ul>
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">FACE</h5>
<li>Face Sets</li>
<li>Fixing Powder</li>
<li>Primer</li>
<li>Concealer</li>
<li>Foundation</li>
<li>Compact</li>
<li>Banana Powder</li>
<li>Highlighter</li>
<li>Blush</li>
<li>Bronzer</li>
<li>Sindoor</li>
<li>Cheek Stain</li>
<li>Setting Powder</li>
<li>Makeup Accessories</li>
<li>Makeup Brushes</li>
</ul>
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">EYES</h5>
<li>Eye Shadow</li>
<li>Eyeliner</li>
<li>Eyebrows</li>
<li>Glitter</li>
<li>Mascara</li>
<li>Kajal</li>
<li>Eyeshadow Brushes</li>
<li>Eye Combos</li>
</ul>
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">NAILS</h5>
<li>Nail Polish</li>
<li>Matte Nail Polish</li>
<li>Nail Lacquer</li>
</ul>
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">SKINCARE</h5>
<li>Moisturizer</li>
<li>Night Cream</li>
<li>Eye Cream</li>
<li>Body lotion</li>
<li>Serum</li>
<li>Sunscreen</li>
<li>Skincare Kits</li>
<li>Cleansing Products</li>
<li>Exfoliator & Scrub</li>
<li>Face Wash</li>
<li>Cleanser</li>
<li>Mask</li>
<li>Face Pack</li>
<li>Sheet Mask</li>
</ul>
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">BATH & BODY</h5>
<li>Shower Gels</li>
<li>Soaps</li>
<li>Body Lotion</li>
<li>Body Spray & Mists</li>
<li>Hand Wash</li>
<li>Foot Cream</li>
</ul>
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">SANITIZING CARE</h5>
<li>Sanitizing Wipes</li>
<li>Face Washes</li>
<li>Shower Gels</li>
<li>Body Moisturizers</li>
<li>Soaps</li>
<li>Hand Care</li>
<li>Foot Care</li>
<li>Surface Spray</li>
<li>Sanitizing Kits</li>
<li>Body Spray & Mists</li>
<li>Sanitizing Spray</li>
<li>Hand Sanitizer</li>
</ul>
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">KITS AND COMBOS</h5>
<li>Makeup Kits</li>
<li>Bridal Makeup Kits</li>
<li>Makeup Combo</li>
<li>Makeup Gift Sets</li>
<li>Cosmetics Kits & Combos</li>
</ul>
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">HAIR CARE</h5>
<li>Shampoo</li>
<li>Conditoner</li>
<li>Hair Oil</li>
<li>Serum</li>
<li>Hair Mask</li>
<li>Combos</li>
</ul>
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">MYGLAMMSTUDIO</h5>
<li>Style</li>
<li>Lifestyle</li>
<li>Trends</li>
<li>Tips</li>
<li>Beauty</li>
<li>Tutorials</li>
</ul>
<ul class="foot_1_contents" type="none">
<h5 class="foot_1_heading">KNOW MORE</h5>
<li>About Us</li>
<li>Exclusive Offers</li>
<li>Refer & Earn</li>
<li>myglammPARTIES</li>
<li>Store Locator</li>
<li>Press & Media</li>
<li>Terms & Conditions</li>
<li>Privacy Policy</li>
<li>Shipping and Delivery policy</li>
<li>Returns and Replacements</li>
<li>MyGlamm Rewards</li>
<li>Loyalty Program Policy</li>
<li>Sitemap</li>
<li>Responsible Disclosure</li>
</ul>
</div>
<div id="footer2">
<div id="foot_form">
<form action="">
<h5>SUBSCRIBE FOR MYGLAMM EMAILS</h5>
<input
type="email"
placeholder="Please Enter Valid Email"
id="subscribe"
/>
<input type="submit" value="SUBSCRIBE NOW" id="subscribe_now" />
<ul type="none">
<li><label for="">STAY CONNECTED</label>|</li>
<li>
<img
src="https://www.myglamm.com/images/instagram.svg"
alt=""
/>
</li>
<li>
<img src="https://www.myglamm.com/images/twitter.svg" alt="" />
</li>
<li>
<img
src="https://www.myglamm.com/images/pinterest.svg"
alt=""
/>
</li>
<li>
<img src="https://www.myglamm.com/images/youtube.svg" alt="" />
</li>
</ul>
</form>
</div>
<div id="app_link">
<p>EXPERIENCE THE MYGLAMM MOBILE APP</p>
<div>
<div>
<img src="https://www.myglamm.com/images/iosStore.png" alt="" />
</div>
<div>
<img src="https://www.myglamm.com/images/playStore.png" alt="" />
</div>
</div>
</div>
</div> -->
</div>
</body>
</html>
<script type="module">
import { navbar, footer } from './nav&foot.js';
let nav = document.getElementById('navbar');
nav.innerHTML = navbar();
let foot = document.getElementById('footer');
foot.innerHTML = footer();
</script>
<script src="./sign&login.js" type="module"></script>