├── Common Files ├── image │ ├── favicon.png │ └── myntra-removebg-preview.png ├── corousel.js ├── hyperlinks.js ├── headerMenu.js ├── women.js ├── men.js ├── homeLiving.js └── homeLiving.css ├── payment ├── end.css ├── end.html ├── otp.html ├── otp.css ├── address.html ├── payment.css ├── address.css ├── payment.html └── confetti.js ├── Profile ├── profile.css ├── signup.js ├── profile.js ├── profile.html └── signup.html ├── wishlist ├── wishlist.css ├── cart.html ├── wishlist.js ├── cart.js ├── cart.css └── wishlist.html ├── Landingpage ├── navbar.css ├── footer.css ├── header.css └── index.html ├── menspage ├── mens.css └── mens.html ├── Home Living Products ├── home_furnishing.css └── home_furnishing.html ├── Homepages ├── homeLiving.html ├── menHomePage.html └── womenHomePage.html ├── index.html └── womensdata ├── style&js └── womestyle.css └── women.html /Common Files/image/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenkumar-42/e-commerce/HEAD/Common Files/image/favicon.png -------------------------------------------------------------------------------- /Common Files/image/myntra-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenkumar-42/e-commerce/HEAD/Common Files/image/myntra-removebg-preview.png -------------------------------------------------------------------------------- /Common Files/corousel.js: -------------------------------------------------------------------------------- 1 | // 2 | var counter = 1; 3 | setInterval(function(){ 4 | document.getElementById('radio' + counter).checked = true; 5 | counter++; 6 | if(counter > 4){ 7 | counter = 1; 8 | } 9 | }, 3000); -------------------------------------------------------------------------------- /Common Files/hyperlinks.js: -------------------------------------------------------------------------------- 1 | 2 | document.querySelector('.fa_user').addEventListener('click', function(){ 3 | window.location.href = "../Profile/profile.html" 4 | }) 5 | // HYPERLINKS 6 | document.querySelector('.fa-heart').addEventListener('click', function(){ 7 | window.location.href = "../wishlist/wishlist.html" 8 | }) 9 | document.querySelector(".fa_wishlist").addEventListener('click', function(){ 10 | window.location.href = "../wishlist/wishlist.html" 11 | }) 12 | document.querySelector('.fa-bag-shopping').addEventListener('click', function(){ 13 | window.location.href = "../wishlist/cart.html" 14 | }) 15 | document.querySelector('.fa_cart').addEventListener('click', function(){ 16 | window.location.href = "../wishlist/cart.html" 17 | }) 18 | -------------------------------------------------------------------------------- /Common Files/headerMenu.js: -------------------------------------------------------------------------------- 1 | 2 | //<------- TOGGLE MENU JS ----------->// 3 | function myFunction() { 4 | var dropDownMenu = document.getElementById("myDropdown") 5 | dropDownMenu.classList.toggle("show") 6 | } 7 | 8 | window.onclick = function(event) { 9 | if (!event.target.matches('.dropbtn')) { 10 | var dropdowns = document.getElementsByClassName("dropdown-content"); 11 | var i; 12 | for (i = 0; i < dropdowns.length; i++) { 13 | var openDropdown = dropdowns[i]; 14 | if (openDropdown.classList.contains('show')) { 15 | openDropdown.classList.remove('show'); 16 | } 17 | } 18 | } 19 | } 20 | 21 | 22 | //<---------- HYPERLINK FOR PROFILE ---------->// 23 | document.getElementById('profile').addEventListener('click', function(){ 24 | window.location.href = "/Profile/signup.html" 25 | }) 26 | -------------------------------------------------------------------------------- /payment/end.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); 2 | 3 | :root { 4 | font-size: 80%; 5 | --primaryFont: 'DM Sans', sans-serif; 6 | --charSpace: 6px; 7 | --primaryColor: #3e4152; 8 | --secondaryColor: #fafbfc; 9 | } 10 | 11 | a:link { 12 | text-decoration: none; 13 | } 14 | 15 | body { 16 | font-family: var(--primaryFont); 17 | scroll-behavior: smooth; 18 | } 19 | 20 | 21 | #confirm { 22 | font-size: 1.5rem; 23 | margin: auto; 24 | margin-top: 40px; 25 | display: flex; 26 | align-items: center; 27 | justify-content: center; 28 | width: 80%; 29 | height: 100px; 30 | color: limegreen; 31 | text-align: center; 32 | border-radius: 10%; 33 | } 34 | 35 | #move{ 36 | margin: auto; 37 | margin-top: 20px; 38 | display: flex; 39 | align-items: center; 40 | justify-content: center; 41 | width: 20%; 42 | height: 60px; 43 | color: white; 44 | background-color: #ff3e6c; 45 | font-weight: bolder; 46 | border-radius: 20px; 47 | } 48 | 49 | #thanks{ 50 | width: 500px; 51 | margin: 2rem auto; 52 | } 53 | #thanks img{ 54 | width: 100%; 55 | display: block; 56 | } -------------------------------------------------------------------------------- /Profile/profile.css: -------------------------------------------------------------------------------- 1 | 2 | body{ 3 | background-image: linear-gradient(to left, #fdeeec, #fdeeed, #fdedef, #fdedf1, #fcedf3); 4 | } 5 | #search > input{ 6 | margin-top: unset; 7 | } 8 | #search #search_icon{ 9 | top: 5.6rem; 10 | } 11 | #boxbody{ 12 | background-color: white; 13 | width :400px; 14 | margin: auto; 15 | margin-top: 12.5rem; 16 | } 17 | img{ 18 | width: 100%; 19 | } 20 | h2{ 21 | font-size: 2.3rem; 22 | } 23 | h2 span,p{ 24 | color: gray; 25 | } 26 | p{ 27 | margin-top: 1rem; 28 | font-size: 1.5rem; 29 | } 30 | p span{ 31 | color:#ff3f6c; 32 | } 33 | .signin{ 34 | padding: 30px; 35 | } 36 | button{ 37 | width: 100%; 38 | color: white; 39 | background-color:#ff3f6c ; 40 | border: none; 41 | text-transform: uppercase; 42 | padding: 12px; 43 | margin-top: 2.5rem; 44 | cursor: pointer; 45 | } 46 | input{ 47 | padding: 10px 145px 10px 20px; 48 | margin-top:20px ; 49 | } 50 | .imgbo{ 51 | margin-bottom: -10px; 52 | } 53 | h3{ 54 | margin-bottom: -2px; 55 | } 56 | 57 | #signUp, #logIn{ 58 | cursor: pointer; 59 | font-weight: 900; 60 | letter-spacing: 1px; 61 | border-bottom: 1px solid #ff3f6c; 62 | } 63 | /* RIGHT SIDE ICONS */ 64 | #right_icon{ 65 | gap: 0.5rem; 66 | } 67 | #right_icon > div{ 68 | cursor: pointer; 69 | } 70 | -------------------------------------------------------------------------------- /payment/end.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Confirm Payment 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 |
19 |
20 |

Order Confirmed
21 | You will soon receive a mail/SMS regarding confirmation of your recent order

22 |
23 | 24 | 25 |
GO TO HOME
26 |
27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /payment/otp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Document 12 | 13 | 14 | 15 |
16 | 18 |
19 |

Verify with OTP

20 |

Sent to registered Mobile No.

21 |
22 |
23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
31 |

RESEND OTP

32 |
33 |
34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /payment/otp.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); 2 | 3 | :root{ 4 | font-size: 80%; 5 | --primaryFont : 'DM Sans', sans-serif; 6 | --charSpace : 6px; 7 | --primaryColor : #3e4152; 8 | --secondaryColor : #fafbfc; 9 | } 10 | a:link{ 11 | text-decoration: none; 12 | } 13 | body{ 14 | font-family: var(--primaryFont); 15 | scroll-behavior: smooth; 16 | } 17 | 18 | #otpDiv{ 19 | width:30%; 20 | margin: auto; 21 | margin-top:2%; 22 | padding-bottom: 100px; 23 | line-height: 2; 24 | box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;; 25 | background-color: white; 26 | } 27 | #otpDiv>img 28 | { 29 | width: 25%; 30 | margin: auto; 31 | margin-top: 60px; 32 | padding:0px 60px; 33 | } 34 | #otpline{ 35 | width: 70%; 36 | margin: auto; 37 | } 38 | p{ 39 | font-size: 13px; 40 | } 41 | h2+p{ 42 | color: gray; 43 | margin-top: -0px; 44 | } 45 | #inputDiv{ 46 | display: flex; 47 | width: 50%; 48 | padding-left: 60px; 49 | justify-content: space-between; 50 | } 51 | #inputDiv>input{ 52 | border:#e9e9ed solid 2px; 53 | width: 25px; 54 | color: black; 55 | font-size: 20px; 56 | } 57 | button{ 58 | width: 50%; 59 | height: 30px; 60 | margin-left:60px; 61 | margin-top: 40px; 62 | border: none; 63 | background-color:#ff3e6c ; 64 | color: white; 65 | font-weight: bold; 66 | } 67 | #checkDiv{ 68 | width: 80%; 69 | padding-left: 60px; 70 | 71 | } 72 | #checkDiv>h4{ 73 | color: #ff3e6c; 74 | margin: 0px 63px; 75 | } 76 | -------------------------------------------------------------------------------- /Profile/signup.js: -------------------------------------------------------------------------------- 1 | var userdata =JSON.parse(localStorage.getItem("userarr")) ||[]; 2 | 3 | document.querySelector("#signup_button").addEventListener("click",sigupfun); 4 | 5 | 6 | 7 | function sigupfun(){ 8 | console.log("inside fun") 9 | var name=document.querySelector("#name").value; 10 | 11 | var mob=document.querySelector("#mob").value; 12 | 13 | var mail=document.querySelector("#mail").value; 14 | 15 | var password=document.querySelector("#pass").value; 16 | 17 | if(name== "" || mob=="" || mail =="" || password ==""){ 18 | alert("fill in the empty fields") 19 | } 20 | 21 | else { 22 | var userobj ={ 23 | name:name, 24 | mob:mob, 25 | mail:mail, 26 | password:password 27 | }; 28 | 29 | userdata.push(userobj); 30 | 31 | localStorage.setItem("userarr",JSON.stringify(userdata)); 32 | 33 | 34 | alert("signed up successfully"); 35 | 36 | document.querySelector("#mob").value=""; 37 | document.querySelector("#mail").value=""; 38 | document.querySelector("#pass").value=""; 39 | document.querySelector("#name").value=""; 40 | 41 | window.location.href="profile.html" 42 | } 43 | } 44 | 45 | 46 | // HYPERLINK FOR PROFILE 47 | document.getElementById('profile').addEventListener('click', function(){ 48 | window.location.href = "profile.html" 49 | }) 50 | document.getElementById('landingPage').addEventListener('click', function(){ 51 | window.location.href = "../Landingpage/index.html" 52 | }) 53 | 54 | document.getElementById('logIn').addEventListener('click', function(){ 55 | window.location.href = "../Profile/profile.html" 56 | }) -------------------------------------------------------------------------------- /Profile/profile.js: -------------------------------------------------------------------------------- 1 | document.querySelector("button").addEventListener("click",loginfun) 2 | 3 | var userdata =JSON.parse(localStorage.getItem("userarr")) ||[]; 4 | 5 | function loginfun(){ 6 | var in_mob =document.querySelector("#mob").value; 7 | 8 | for(var a=userdata.length-1; a>=0 ;a--) 9 | { 10 | if (in_mob ==""){ 11 | alert("enter mobile to login") 12 | break; 13 | } 14 | 15 | if(in_mob == userdata[a].mob){ 16 | if( checkpass(a)){ 17 | console.log(checkpass(a)) 18 | alert("login successful") 19 | document.querySelector("#mob").value = ""; 20 | document.querySelector("#pass").value = ""; 21 | 22 | window.location.href ="../payment/address.html"; 23 | break; 24 | }else{ 25 | alert("wrong password") 26 | document.querySelector("#pass").value=""; 27 | } 28 | } 29 | else if(a==userdata.length-1){ 30 | 31 | alert("you dont have account sign up first") 32 | 33 | window.location.href="signup.html" 34 | } 35 | 36 | } 37 | } 38 | 39 | function checkpass(a){ 40 | 41 | var in_pass =document.querySelector("#pass").value; 42 | 43 | return ( userdata[a].password == in_pass) 44 | 45 | } 46 | 47 | 48 | 49 | // HYPERLINKS 50 | document.getElementById('profile').addEventListener('click', function(){ 51 | window.location.href = "signup.html" 52 | }) 53 | document.getElementById('landingPage').addEventListener('click', function(){ 54 | window.location.href = "../Landingpage/index.html" 55 | }) 56 | document.getElementById('signUp').addEventListener('click', function(){ 57 | window.location.href = "../Profile/signup.html" 58 | }) -------------------------------------------------------------------------------- /wishlist/wishlist.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); 2 | *{ 3 | box-sizing: border-box; 4 | } 5 | 6 | body{ 7 | font-size: 1.6rem; 8 | } 9 | 10 | .wishhead{ 11 | font-size: 2rem; 12 | margin: 15rem 0 4rem 5rem; 13 | } 14 | .wishcount{ 15 | color: Gray; 16 | } 17 | .container{ 18 | width:85%; 19 | margin: auto; 20 | display: grid; 21 | grid-template-columns: repeat(4,1fr); 22 | gap: 4rem; 23 | } 24 | .container>div{ 25 | display: flex; 26 | flex-direction: column; 27 | justify-content: space-between; 28 | width: 100%; 29 | height: auto; 30 | color: #ff3f6c; 31 | box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; 32 | } 33 | 34 | .container > .imgbox > div:nth-child(1){ 35 | height: 65%; 36 | } 37 | .container img{ 38 | height: 100%; 39 | width: 100%; 40 | } 41 | 42 | .container p { 43 | text-align: center; 44 | line-height: 2rem; 45 | } 46 | 47 | .buttonholder{ 48 | margin-top: 1.5rem; 49 | display: flex; 50 | justify-content: space-around; 51 | padding: 2px 10px; 52 | /* align-items: center; */ 53 | padding: 1.2rem; 54 | 55 | 56 | } 57 | .buttonholder > button{ 58 | border:0; 59 | color: white; 60 | background-color: #ff3f6c; 61 | padding : 1.2rem 2rem; 62 | border-radius: 5px; 63 | } 64 | .pricepara > span{ 65 | margin-left: 10px; 66 | 67 | } 68 | 69 | @media all and (min-width: 551px) and (max-width: 850px){ 70 | .container{ 71 | grid-template-columns: repeat(3,1fr); 72 | } 73 | } 74 | @media all and (max-width: 550px){ 75 | .container{ 76 | grid-template-columns: repeat(2,1fr); 77 | } 78 | } 79 | 80 | 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /Landingpage/navbar.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); 2 | 3 | :root{ 4 | font-size: 62.5%; 5 | --primaryFont : 'DM Sans', sans-serif; 6 | --charSpace : 6px; 7 | --primaryColor : #3e4152; 8 | --secondaryColor : #fafbfc; 9 | } 10 | body{ 11 | font-family: var(--primaryFont); 12 | scroll-behavior: smooth; 13 | } 14 | #navbar{ 15 | background-color: white; 16 | font-family:Whitney; 17 | width: 100%; 18 | height: 80px; 19 | display: flex; 20 | align-items: center; 21 | justify-content:space-around; 22 | box-sizing: border-box; 23 | padding: 35px; 24 | box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;; 25 | font-size: 14px; 26 | line-height: 20px; 27 | color:#545766; 28 | font-weight: bolder; 29 | } 30 | 31 | #myntraIcon{ 32 | height: 60px; 33 | width: 60px; 34 | 35 | } 36 | #searchbar{ 37 | display: flex; 38 | width: 30%; 39 | background-color: #f5f5f6; 40 | color: gray; 41 | text-align: center; 42 | box-sizing: border-box; 43 | border-radius:5px; 44 | justify-content: space-evenly; 45 | } 46 | #searchbar:hover{ 47 | background: white; 48 | } 49 | #magGlass{ 50 | padding: 10px; 51 | } 52 | #profile,#wishlist,#bag{ 53 | text-align: center; 54 | color: #6c2632; 55 | 56 | } 57 | #profile>p,#wishlist>p,#bag>p{ 58 | margin-top: -0px; 59 | font-size: 12px; 60 | color: black; 61 | } 62 | #profile>a>i,#wishlist>a>i,#bag>a>i{ 63 | color:gray; 64 | } 65 | img~a>div{ 66 | color:black; 67 | } 68 | a:link{ 69 | text-decoration: none; 70 | } 71 | a>div{ 72 | color: black; 73 | } 74 | 75 | input { 76 | background-color: transparent; 77 | border: 0px solid; 78 | height: 40px; 79 | width: 90%; 80 | color: #CCC; 81 | } 82 | textarea:focus,input:focus 83 | { 84 | outline: none; 85 | } 86 | i{ 87 | font-size:20px; 88 | } 89 | img{ 90 | width: 100%; 91 | } 92 | 93 | /* TOGGLE BAR */ 94 | .bx{ 95 | font-size: 3.5rem; 96 | } 97 | -------------------------------------------------------------------------------- /wishlist/cart.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Cart 8 | 9 | 10 | 14 | 15 | 16 | 17 |
18 |
19 | brandLogo 20 |
21 |
22 |

BAG --------- ADDRESS --------- PAYMENT

23 |
24 |
25 | 26 | 100% SECURE 27 |
28 |
29 | 30 |
31 |

Sale Starts in 3 Days

32 |
33 |
34 |
35 | 36 |
37 | 38 |
39 |
PRICE DETAILS
40 |
41 | Total MRP-- 42 |
43 |
44 | Discount on MRP-- 45 |
46 |
47 | Delivery Charges-- 48 |
49 |
50 | Total Amount-- 51 |
52 |

Enter Promo Code

53 |
54 | 55 | 56 |
Apply
57 |
58 | 59 | 60 | 61 | 62 |
PLACE ORDER
63 |
64 |
65 | 66 | 67 | 73 | 74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /Landingpage/footer.css: -------------------------------------------------------------------------------- 1 | #footer { 2 | margin-top: 50px; 3 | padding: 70px 70px; 4 | background-color:#f7f7f7; 5 | 6 | } 7 | #div1 { 8 | width:90%; 9 | display:grid; 10 | margin:auto; 11 | grid-template-columns: repeat(4, auto); 12 | grid-template-rows: repeat(1,auto); 13 | line-height: 20px; 14 | grid-template-areas: 15 | "a b c d" ; 16 | 17 | } 18 | #a :nth-child(1){ 19 | font-weight: bolder; 20 | 21 | } 22 | #footer p{ 23 | font-size: 15px; 24 | 25 | } 26 | #footer h5{ 27 | font-size: 15px; 28 | color: black; 29 | } 30 | li>b{ 31 | color: black; 32 | } 33 | #mainDiv>div>p:first-child{ 34 | font-weight: bold; 35 | } 36 | #playstore{ 37 | margin-bottom: 40px; 38 | } 39 | #playstore>img{ 40 | width: 130px; 41 | padding-right: 10px; 42 | } 43 | #playstore+p{ 44 | font-weight: bold; 45 | } 46 | #socialMedia{ 47 | display: flex; 48 | width: 30%; 49 | justify-content: space-between; 50 | color: #6b6d7a; 51 | } 52 | #subDiv { 53 | width: 60%; 54 | } 55 | .subdiv{ 56 | display: flex; 57 | justify-content: space-evenly; 58 | 59 | } 60 | .subdiv>img { 61 | padding: 15px; 62 | width: 50px; 63 | height: 50px; 64 | } 65 | #pline { 66 | display: flex; 67 | align-items: center; 68 | width: 80%; 69 | margin: auto; 70 | } 71 | 72 | #pline>div { 73 | width: 85%; 74 | margin-left: 1%; 75 | height: 0.05px; 76 | border-top: #e9e9ed solid 2px; 77 | } 78 | #p { 79 | width: 80%; 80 | margin: auto; 81 | border-bottom:#e9e9ed solid 2px; 82 | } 83 | 84 | #pDiv>p { 85 | color: #696b79; 86 | font-size: 15px; 87 | line-height: 25px; 88 | } 89 | 90 | img+p>b { 91 | color: black; 92 | font-size: 15px; 93 | } 94 | 95 | p>b { 96 | color: #6b8fe0; 97 | } 98 | 99 | #pterm { 100 | display: flex; 101 | justify-content: space-between; 102 | } 103 | 104 | #address { 105 | width: 80%; 106 | margin: auto; 107 | display: flex; 108 | justify-content: space-between; 109 | border-bottom: #e9e9ed solid 2px; 110 | } 111 | 112 | #address>div { 113 | width: 30%; 114 | color: #696b79; 115 | font-size: 15px; 116 | } 117 | #address>div+div { 118 | margin-top: 90px; 119 | } 120 | #discrp1 { 121 | color: #696b79; 122 | font-size: 15px; 123 | width: 80%; 124 | margin: auto; 125 | } -------------------------------------------------------------------------------- /wishlist/wishlist.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | var wisharr =JSON.parse(localStorage.getItem("wishListObj"))||[]; 4 | 5 | var itemcount = wisharr.length; 6 | document.querySelector(".wishcount").innerText =` ${itemcount} Items` 7 | 8 | wisharr.map(function(ele,ind){ 9 | 10 | var box =document.createElement("div") 11 | 12 | 13 | var image =document.createElement("img") 14 | image.src =ele.image_url; 15 | 16 | var imgbox =document.createElement("div") 17 | box.className ="imgbox" 18 | imgbox.append(image) 19 | 20 | box.append(imgbox) 21 | 22 | var para =document.createElement("p"); 23 | para.innerText=ele.brand ; 24 | para.style.color="gray"; 25 | box.append(para) 26 | 27 | var price = document.createElement("span"); 28 | price.innerText = ele.price 29 | price.style.color ="black" 30 | 31 | var strikedprice = document.createElement("span"); 32 | strikedprice.innerText = ele.strikedoffprice; 33 | strikedprice.style.textDecoration = "line-through"; 34 | strikedprice.style.color ="gray"; 35 | 36 | 37 | var offer = document.createElement("span"); 38 | offer.innerText =ele.offer; 39 | offer.style.color="red"; 40 | 41 | var pricepara =document.createElement("p"); 42 | pricepara.className="pricepara" 43 | pricepara.append(price,strikedprice,offer) 44 | box.append(pricepara) 45 | 46 | var buttonrm =document.createElement("button") 47 | buttonrm.innerText ="Remove" 48 | 49 | buttonrm.addEventListener("click", function(){ 50 | removefromwish(ind) 51 | }) 52 | 53 | 54 | var buttonbag =document.createElement("button") 55 | buttonbag.innerText ="MOVE TO BAG"; 56 | 57 | buttonbag.addEventListener("click", function(){ 58 | sendtocart(ele,ind) 59 | }) 60 | 61 | 62 | 63 | var buttonholder = document.createElement("div"); 64 | buttonholder.className ="buttonholder" 65 | buttonholder.append(buttonrm,buttonbag) 66 | box.append(buttonholder) 67 | 68 | 69 | document.querySelector(".container").append(box) 70 | }) 71 | 72 | 73 | 74 | function removefromwish(ind){ 75 | 76 | wisharr.splice(ind,1) 77 | localStorage.setItem("wishListObj",JSON.stringify(wisharr)) 78 | window.location.href="wishlist.html" 79 | 80 | } 81 | 82 | // localStorage.setItem("BagListObj" , JSON.stringify(bagList)) 83 | var baglist = JSON.parse(localStorage.getItem("BagListObj"))||[]; 84 | 85 | function sendtocart(ele,ind){ 86 | 87 | baglist.unshift(ele); 88 | localStorage.setItem("BagListObj",JSON.stringify(baglist)) 89 | 90 | wisharr.splice(ind,1) 91 | localStorage.setItem("wishListObj",JSON.stringify(wisharr)) 92 | window.location.href="wishlist.html" 93 | 94 | } 95 | 96 | document.getElementById('landingPage').addEventListener('click', function(){ 97 | window.location.href = "../Landingpage/index.html" 98 | }) -------------------------------------------------------------------------------- /Common Files/women.js: -------------------------------------------------------------------------------- 1 | 2 | // 3 | var categoryBag = [ 4 | {image_url :'https://bit.ly/3wMvK2N'}, 5 | {image_url :'https://bit.ly/3wY0TA6'}, 6 | {image_url :'https://bit.ly/3IWRXxk'}, 7 | {image_url :'https://bit.ly/36I2HCP'}, 8 | {image_url :'https://bit.ly/3LtKeIK'}, 9 | {image_url :'https://bit.ly/3uEEhC2'}, 10 | ] 11 | categoryBag.map(function(element){ 12 | var box = document.createElement('div'); 13 | var img = document.createElement('img'); 14 | img.setAttribute('src', element.image_url) 15 | box.append(img); 16 | document.getElementById('categoryBag_women').append(box) 17 | }) 18 | 19 | // 20 | var brandsBag = [ 21 | {image_url :'https://bit.ly/3qOmNSH'}, 22 | {image_url :'https://bit.ly/3Dx4Lth'}, 23 | {image_url :'https://bit.ly/3uGBVTh'}, 24 | {image_url :'https://bit.ly/3DxPVCY'}, 25 | {image_url :'https://bit.ly/3iQbIfq'}, 26 | ] 27 | brandsBag.map(function(element){ 28 | var box = document.createElement('div'); 29 | var img = document.createElement('img'); 30 | img.setAttribute('src', element.image_url) 31 | box.append(img); 32 | document.getElementById('explore_more_women').append(box) 33 | }) 34 | 35 | 36 | // <------- SLIDER IMAGES -------> // 37 | var slideImages = [ 38 | //FOR TABLET & DEKSTOP VIEW 39 | [{img_url : "https://bit.ly/3Dj1D46"}, 40 | {img_url : "https://bit.ly/3wJ6k64"}, 41 | {img_url : "https://bit.ly/36E3HYr"}, 42 | {img_url : "https://bit.ly/3uBmOdF"}, 43 | ], 44 | 45 | //FOR MOBILE VIEW 46 | [{img_url : "https://bit.ly/36X3qjg"}, 47 | {img_url: "https://bit.ly/3DnFd1L"}, 48 | {img_url: "https://bit.ly/3tVztt3"}, 49 | {img_url: "https://bit.ly/3iR1aN6"}, 50 | ] 51 | ] 52 | 53 | var z = null; 54 | 55 | //script for media queries 56 | var value = window.matchMedia("(max-width: 550px)") //FOR TABLET VIEW 57 | mFunction(value) 58 | value.addListener(mFunction) 59 | function mFunction(value) { 60 | if (value.matches) { 61 | z = slideImages[1]; 62 | } 63 | else { 64 | z = slideImages[0] 65 | } 66 | } 67 | 68 | z.map(function(ele, index){ 69 | var slideDiv = document.createElement('div'); 70 | switch(index){ 71 | case 0 : 72 | slideDiv.setAttribute('class', 'slide first'); 73 | break; 74 | default : 75 | slideDiv.setAttribute('class', 'slide') 76 | } 77 | 78 | var images = document.createElement('img'); 79 | images.src = ele.img_url; 80 | 81 | slideDiv.append(images); 82 | document.getElementById('slides').append(slideDiv) 83 | }) 84 | 85 | var images = document.querySelectorAll('img') 86 | for(let i=0; i 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Address | Checkout 11 | 12 | 13 | 14 | 30 |
31 |
32 |
33 |

Select Delivery Address

34 |
35 |
ADD NEW ADDRESS
36 |
37 |
38 |
DEFAULT ADDRESS
39 |
40 |
41 |
42 |

Sumit Kumar

43 |
44 |
Home
45 |
46 |

House No-C12,Old Extension Road,Gandhi Road,Karmik Nagar
Dhanbad,Jharkhand,PIN-123456

47 |

Mobile No: 2314567898

48 |

Pay on Delivery

49 |
50 |
51 | Remove 52 |
53 |
54 | EDIT 55 |
56 |
57 |
58 |
59 | +Add New Address 60 |
61 |
62 |
63 | 64 |
65 |
DELIVERY ESTIMATES
66 | Delivery Between 7Apr to 10Apr 67 |
68 | 69 |
70 |
71 | CONTINUE 72 |
73 |
74 |
75 | 76 | 77 | 78 | 90 | 91 | -------------------------------------------------------------------------------- /Common Files/men.js: -------------------------------------------------------------------------------- 1 | 2 | // <------- SLIDER IMAGES -------> // 3 | var slideImages = [ 4 | //FOR TABLET & DEKSTOP VIEW 5 | [{img_url : "https://bit.ly/3qJmvfK"}, 6 | {img_url : "https://bit.ly/3uFdtl6"}, 7 | {img_url : "https://bit.ly/3NqqqYR"}, 8 | {img_url : "https://bit.ly/3NxptOo"}, 9 | ], 10 | 11 | //FOR MOBILE VIEW 12 | [{img_url : "https://bit.ly/35p0UBR"}, 13 | {img_url: "https://bit.ly/38hbVX5"}, 14 | {img_url: "https://bit.ly/3iOZ3t9"}, 15 | {img_url: "https://bit.ly/3tTroEZ"}, 16 | ] 17 | ] 18 | 19 | var z = null; 20 | 21 | //script for media queries 22 | var value = window.matchMedia("(max-width: 550px)") //FOR TABLET VIEW 23 | mFunction(value) 24 | value.addListener(mFunction) 25 | function mFunction(value) { 26 | if (value.matches) { 27 | z = slideImages[1]; 28 | } 29 | else { 30 | z = slideImages[0] 31 | } 32 | } 33 | 34 | z.map(function(ele, index){ 35 | var slideDiv = document.createElement('div'); 36 | switch(index){ 37 | case 0 : 38 | slideDiv.setAttribute('class', 'slide first'); 39 | break; 40 | default : 41 | slideDiv.setAttribute('class', 'slide') 42 | } 43 | 44 | var images = document.createElement('img'); 45 | images.src = ele.img_url; 46 | 47 | slideDiv.append(images); 48 | document.getElementById('slides').append(slideDiv) 49 | }) 50 | 51 | 52 | 53 | 54 | // 55 | var categoryBag = [ 56 | {image_url :'https://bit.ly/3DnfTst'}, 57 | {image_url :'https://bit.ly/3uB2WHQ'}, 58 | {image_url :'https://bit.ly/3NvrZEB'}, 59 | {image_url :'https://bit.ly/3JP1BmV'}, 60 | {image_url :'https://bit.ly/3Nt0VG5'}, 61 | {image_url :'https://bit.ly/3uEEhC2'}, 62 | ] 63 | categoryBag.map(function(element){ 64 | var box = document.createElement('div'); 65 | var img = document.createElement('img'); 66 | img.setAttribute('src', element.image_url) 67 | box.append(img); 68 | document.getElementById('categoryBag').append(box) 69 | }) 70 | 71 | 72 | // 73 | var brandsBag = [ 74 | {image_url :'https://bit.ly/3wTrgam'}, 75 | {image_url :'https://bit.ly/3Ln7fx1'}, 76 | {image_url :'https://bit.ly/3wKizze'}, 77 | {image_url :'https://bit.ly/3iLkgUQ'}, 78 | {image_url :'https://bit.ly/3uzcDX3'}, 79 | ] 80 | brandsBag.map(function(element){ 81 | var box = document.createElement('div'); 82 | var img = document.createElement('img'); 83 | img.setAttribute('src', element.image_url) 84 | box.append(img); 85 | document.getElementById('explore_more').append(box) 86 | }) 87 | 88 | 89 | document.getElementById('landingPage').addEventListener('click', function(){ 90 | window.location.href = "index.html" 91 | }) 92 | var images = document.querySelectorAll('img') 93 | for(let i=0; i// 3 | 4 | var anchors_para = [ 5 | [ 6 | {h4 : 'Furnishings & Bed Linen'}, 7 | {p : 'Bed Sheets'}, 8 | {p : 'Bedding Sets & Bed Covers'}, 9 | {p : 'Blankets, Quilts & Dohars'}, 10 | {p : 'Pillows & Pillow Covers'}, 11 | {p : 'Cushions & Cushion Covers'}, 12 | {p : 'Curtains'}, 13 | {p : 'Mats & Dhurries'}, 14 | {p : 'Carpets'}, 15 | ], 16 | [ 17 | {h4 : 'Bath & Bed Linen'}, 18 | {p : 'Towels & Towel Sets'}, 19 | {p : 'Bath Robes'}, 20 | {p : 'Bathroom Accessories'}, 21 | {p : 'Bath Robes'}, 22 | {p : 'Shower Curtains'}, 23 | {p : 'Bath Rugs'}, 24 | ], 25 | [ 26 | {h4 : 'Home Décor'}, 27 | {p : 'Plants & Planters'}, 28 | {p : 'Aromas, Candles & Candle Holders'}, 29 | {p : 'Clocks'}, 30 | {p : 'Mirrors'}, 31 | {p : 'Wall Décor'}, 32 | {p : 'Wall Shelves'}, 33 | {p : 'Fountains'}, 34 | {p : 'Showpieces & Vases'}, 35 | ], 36 | [ 37 | {h4 : 'Lamps & Lighting'}, 38 | {p : 'Floor & Wall Lamps'}, 39 | {p : 'Table Lamps'}, 40 | ], 41 | [ 42 | {h4 : 'Kitchen & Table'}, 43 | {p : 'Tableware & Serveware'}, 44 | {p : 'Bar & Drinkware'}, 45 | {p : 'Cookware & Kitchen Tools'}, 46 | {p : 'Kitchen Storage'}, 47 | {p : 'Table Covers & Furnishings'}, 48 | ], 49 | [ 50 | {h4 : 'Storage & Organisers'}, 51 | {p : 'Organisers'}, 52 | {p : 'Hooks & Holders'}, 53 | ], 54 | 55 | ] 56 | var n = null; 57 | 58 | //script for media queries 59 | var value = window.matchMedia("(max-width: 850px)") //FOR TABLET VIEW 60 | mFunction(value) 61 | value.addListener(mFunction) 62 | function mFunction(value) { 63 | if (value.matches) { 64 | n = anchors_para.length-3; 65 | } 66 | else { 67 | n = anchors_para.length; 68 | } 69 | } 70 | 71 | for(let i=0; i// 95 | var z = document.querySelectorAll('img'); 96 | for(let i=0; ih5:last-child{ 46 | color:#3cc3a0; 47 | border-bottom:#3cc3a0 2px solid; 48 | } 49 | #nav3{ 50 | display: flex; 51 | align-items: center; 52 | justify-content: space-around; 53 | 54 | } 55 | #nav3>img{ 56 | width: 30px; 57 | } 58 | p>b{ 59 | letter-spacing:3px; 60 | } 61 | .line{ 62 | border-top: 1px dashed; 63 | width: 50px; 64 | } 65 | 66 | #first, #second{ 67 | cursor: pointer; 68 | } 69 | 70 | /* end of navbar */ 71 | 72 | 73 | #cart{ 74 | display: flex; 75 | width: 80%; 76 | margin: auto; 77 | justify-content: space-between; 78 | padding:20px; 79 | } 80 | #main1{ 81 | width:65%; 82 | padding:10px; 83 | border-right:2px solid #e9e9ed; 84 | } 85 | 86 | #main1>div:first-child{ 87 | 88 | margin-top: 10px; 89 | border:1px solid #e9e9ed; 90 | padding: 0px 20px; 91 | } 92 | h4+p+p{ 93 | color: #ff3e6c; 94 | text-align: center; 95 | } 96 | #payment{ 97 | border: 1px solid #e9e9ed; 98 | display: flex; 99 | 100 | } 101 | #mode{ 102 | width: 40%; 103 | margin-right: 30px; 104 | } 105 | #mode>div{ 106 | padding: 0px 10px; 107 | display: flex; 108 | border: 1px solid #e9e9ed; 109 | align-items: center; 110 | background-color: whitesmoke; 111 | } 112 | #mode>div:hover{ 113 | background-color: white; 114 | } 115 | i{ 116 | margin-right: 10px; 117 | } 118 | #infopay{ 119 | background-color: whitesmoke; 120 | width: 80%; 121 | box-sizing: border-box; 122 | padding: 10px; 123 | margin-bottom: 40px; 124 | } 125 | #pay{ 126 | width: 80%; 127 | height: 50px; 128 | background-color:#ff3e6c; 129 | display: flex; 130 | align-items: center; 131 | padding-left:30px; 132 | color: white; 133 | font-weight: bolder; 134 | } 135 | 136 | /* added same style from the cart page related to orderbox */ 137 | 138 | .orderbox{ 139 | height: 200px; 140 | width: 30%; 141 | border :2px solid #F5F5F6; 142 | margin-top: 80px; 143 | margin-left: 50px; 144 | padding: 20px; 145 | border-radius: 4px; 146 | box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; 147 | } 148 | 149 | .orderbox>div{ 150 | display: flex; 151 | justify-content: space-between; 152 | margin: 10px 0px; 153 | color: #535766; 154 | 155 | } 156 | .filldiscount{ 157 | color:limegreen; 158 | } 159 | .pricedets,.amount{ 160 | border-bottom: 1px solid gray; 161 | padding-bottom: 20px; 162 | } -------------------------------------------------------------------------------- /Common Files/homeLiving.css: -------------------------------------------------------------------------------- 1 | 2 | /* BANNER SECTION */ 3 | #banner{ 4 | margin-top: 15rem; 5 | width: 100%; 6 | } 7 | #banner > div{ 8 | width: 93%; 9 | height: 400px; 10 | margin: auto; 11 | } 12 | #banner img{ 13 | width: 100%; 14 | height: 100%; 15 | cursor: pointer; 16 | } 17 | #banner .forDesk{ 18 | display: none; 19 | } 20 | 21 | /* MAIN SECTION */ 22 | main{ 23 | width: 93%; 24 | margin: auto; 25 | display: flex; 26 | justify-content: space-between; 27 | } 28 | main > #content{ 29 | width: 70%; 30 | } 31 | main > aside{ 32 | width: 30%; 33 | } 34 | #content_head{ 35 | margin-top: 2rem; 36 | } 37 | #content > #category{ 38 | width: 100%; 39 | display: grid; 40 | grid-template-columns: repeat(2, 1fr); 41 | grid-template-areas: 42 | "one two" 43 | "three four" 44 | "five six"; 45 | row-gap: 5rem; 46 | column-gap: 1rem; 47 | } 48 | #category div:nth-child(1){ 49 | grid-area: one; 50 | } 51 | #category div:nth-child(2){ 52 | grid-area: two; 53 | } 54 | #category div:nth-child(3){ 55 | grid-area: three; 56 | } 57 | #category div:nth-child(4){ 58 | grid-area: four; 59 | } 60 | #category div:nth-child(5){ 61 | grid-area: five; 62 | } 63 | #category div:nth-child(6){ 64 | grid-area: six; 65 | } 66 | #category img{ 67 | width: 100%; 68 | transition: 300ms all ease-in-out; 69 | } 70 | 71 | #category > div{ 72 | overflow: hidden; 73 | cursor: pointer; 74 | } 75 | #category > div:hover img{ 76 | transform: scale(1.08); 77 | } 78 | 79 | /* HOME & LIVING MEGAMENU */ 80 | #megamenu_container{ 81 | position: relative; 82 | } 83 | #megamenu{ 84 | /* visibility: hidden; */ 85 | position: absolute; 86 | background-color: #fff; 87 | left: 100%; 88 | right: 100%; 89 | top: 100%; 90 | bottom: 100%; 91 | } 92 | /* #megamenu_container:hover #megamenu{ 93 | display: none; 94 | } */ 95 | 96 | 97 | 98 | /* MAIN ASIDE SECTION */ 99 | aside{ 100 | color: #626573; 101 | } 102 | aside div:nth-child(1){ 103 | margin-top: 4rem; 104 | } 105 | aside >*{ 106 | width: 70%; 107 | margin: auto; 108 | } 109 | aside p{ 110 | font-size: 1.5rem; 111 | line-height: 2.5rem; 112 | cursor: pointer; 113 | } 114 | aside p:hover{ 115 | text-decoration: underline; 116 | } 117 | aside div h4{ 118 | margin: 2rem 0; 119 | font-size: 1.7rem; 120 | } 121 | 122 | 123 | 124 | /* BRAND SECTIONS */ 125 | .wrapper{ 126 | width: 100%; 127 | margin: 7rem auto; 128 | background-color: #f0eeef; 129 | display: grid; 130 | grid-template-columns: repeat(1, 1fr); 131 | grid-template-areas: 132 | "top" 133 | "bottom" 134 | ; 135 | } 136 | .wrapper div:nth-child(1){ 137 | grid-area: top; 138 | } 139 | .wrapper div:nth-child(2){ 140 | grid-area: bottom; 141 | } 142 | section:nth-of-type(3) { 143 | background-color:unset; 144 | } 145 | .wrapper > .container{ 146 | width: 93%; 147 | margin: 0 auto; 148 | display: flex; 149 | } 150 | .wrapper img{ 151 | width: 100%; 152 | transition: 400ms all ease-in-out; 153 | } 154 | .container > div{ 155 | overflow: hidden; 156 | cursor: pointer; 157 | } 158 | .container>div:hover img{ 159 | transform: scale(1.08); 160 | 161 | } 162 | #featured{ 163 | display: block; 164 | width: 93%; 165 | margin: auto; 166 | } 167 | 168 | 169 | /* MEDIA QUERRIES FOR MOBILE */ 170 | @media all and (max-width : 550px){ 171 | #banner .forDesk{ 172 | display: block; 173 | } 174 | main{ 175 | width: 90%; 176 | } 177 | main #content{ 178 | width: 100%; 179 | } 180 | main aside{ 181 | display: none; 182 | } 183 | .container :nth-child(3){ 184 | display: none; 185 | } 186 | } -------------------------------------------------------------------------------- /payment/address.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); 2 | 3 | 4 | :root{ 5 | --primaryFont : 'DM Sans', sans-serif; 6 | --charSpace : 6px; 7 | --primaryColor : #3e4152; 8 | --secondaryColor : #fafbfc; 9 | } 10 | body{ 11 | padding: 0; 12 | } 13 | *{ 14 | padding: 0.5rem 1rem; 15 | } 16 | a:link{ 17 | text-decoration: none; 18 | } 19 | body{ 20 | font-family: var(--primaryFont); 21 | scroll-behavior: smooth; 22 | } 23 | 24 | a:link{ 25 | text-decoration: none; 26 | } 27 | 28 | #navbar{ 29 | width: 100%; 30 | height: 70px; 31 | display: flex; 32 | align-items: center; 33 | justify-content: space-between; 34 | box-sizing: border-box; 35 | padding: 0px 50px; 36 | margin-top: -10px; 37 | box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; 38 | font-weight: bold; 39 | } 40 | #logo{ 41 | width: 60px; 42 | height:60px; 43 | background-color: white; 44 | } 45 | #div2{ 46 | letter-spacing:3px; 47 | width: 25%; 48 | display: flex; 49 | align-items: center; 50 | justify-content: space-between; 51 | color: gray; 52 | 53 | } 54 | #div2>h5:nth-child(3){ 55 | color:#3cc3a0; 56 | border-bottom:#3cc3a0 2px solid; 57 | } 58 | #div3{ 59 | 60 | display: flex; 61 | align-items: center; 62 | justify-content: space-evenly; 63 | color: gray; 64 | } 65 | #div3>img{ 66 | width: 30px; 67 | } 68 | p>b{ 69 | letter-spacing:3px; 70 | } 71 | .line{ 72 | border-top: 1px dashed; 73 | width: 50px; 74 | } 75 | #first, #third{ 76 | cursor: pointer; 77 | } 78 | 79 | /* end of nav bar */ 80 | 81 | 82 | #cart{ 83 | display: flex; 84 | width: 70%; 85 | margin: auto; 86 | justify-content: space-between; 87 | padding:20px; 88 | } 89 | #Div{ 90 | width: 60%; 91 | padding: 10px 20px; 92 | } 93 | #Div>div:first-child{ 94 | display: flex; 95 | height: 30px; 96 | justify-content: space-between; 97 | align-items: center; 98 | } 99 | h3+div{ 100 | width: 25%; 101 | display: flex; 102 | align-items: center; 103 | justify-content: center; 104 | border: 1px solid; 105 | height: 30px; 106 | border-radius: 5px; 107 | 108 | } 109 | #div>div:nth-child(3){ 110 | padding: 20px; 111 | flex-direction: column; 112 | border:2px solid #e9e9ed; 113 | box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;; 114 | } 115 | #name{ 116 | width:40%; 117 | display: flex; 118 | align-items: center; 119 | justify-content: space-between; 120 | } 121 | #home{ 122 | width: 30%; 123 | text-align: center; 124 | border: #3cc3a0 1px solid; 125 | color: #3cc3a0; 126 | border-radius: 20px; 127 | } 128 | #option{ 129 | display: flex; 130 | width:30%; 131 | align-items: center; 132 | justify-content: space-between; 133 | } 134 | #option>div{ 135 | font-weight: bold; 136 | border-radius: 5px; 137 | padding: 0px 10px; 138 | border: 1px solid; 139 | } 140 | #add{ 141 | display: flex; 142 | align-items: center; 143 | margin-top: 20px; 144 | color: #ff3e6c; 145 | font-weight: bold; 146 | padding-left: 10px; 147 | border: 2px dashed #e9e9ed; 148 | height: 80px; 149 | } 150 | #checkDiv{ 151 | padding:0px 20px; 152 | width: 30%; 153 | border-left: 1PX solid #e9e9ed; 154 | } 155 | 156 | #itemDiv{ 157 | border: #e9e9ed 2px solid; 158 | height:150px; 159 | padding: 10px; 160 | } 161 | 162 | #place{ 163 | width: 100%; 164 | height: 40px; 165 | margin-top:30px; 166 | background-color:#ff3e6c; 167 | display: flex; 168 | justify-content: center; 169 | align-items: center; 170 | color: white; 171 | font-size: 15px; 172 | font-weight: bolder; 173 | } 174 | 175 | -------------------------------------------------------------------------------- /Profile/profile.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Login. 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 20 | 28 | 32 |
33 |
34 | 35 |
36 | login 37 | sign up 38 |
39 | 40 | profile 41 |
42 |
43 | 44 | wishlist 45 |
46 |
47 | 48 | bag 49 |
50 |
51 | 52 | 53 |
54 | 55 | 70 |
71 |
72 | 73 | 74 | 75 | 76 | 77 |
78 |
79 | 80 |
81 | 82 | 97 | 98 |
99 | 100 | 101 | 102 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /menspage/mens.css: -------------------------------------------------------------------------------- 1 | #sorting { 2 | width: 100%; 3 | margin-left: 1rem; 4 | margin-top: 15rem; 5 | } 6 | 7 | .filter { 8 | padding: 10px 20px; 9 | } 10 | 11 | * { 12 | box-sizing: border-box; 13 | } 14 | 15 | #wrapper { 16 | width: 100%; 17 | display: flex; 18 | gap: 3rem; 19 | } 20 | 21 | 22 | /* filter */ 23 | 24 | #filter { 25 | height: 100%; 26 | width: 23%; 27 | margin-left: 1rem; 28 | margin-top: 5rem; 29 | box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; 30 | display: flex; 31 | flex-direction: column; 32 | gap: 1.2rem; 33 | padding: 1.1rem; 34 | padding-bottom: unset; 35 | } 36 | 37 | #filter>div { 38 | width: 100%; 39 | height: 100%; 40 | border-bottom: 2px solid #efefee; 41 | display: flex; 42 | flex-direction: column; 43 | align-items: center; 44 | padding-bottom: 2rem; 45 | } 46 | 47 | #filter>div>* { 48 | width: 90%; 49 | } 50 | 51 | #filter>div>h3~* { 52 | display: inline-block; 53 | } 54 | 55 | input[type="checkbox" i], 56 | input[type="radio" i] { 57 | cursor: pointer; 58 | margin-right: 1.2rem; 59 | } 60 | 61 | #filter h3 { 62 | margin-bottom: 1.2rem; 63 | font-size: 1.8rem; 64 | font-weight: bold; 65 | } 66 | 67 | #filter h3~* { 68 | font-size: 1.6rem; 69 | color: #282c3f; 70 | font-weight: 100; 71 | line-height: 3.2rem; 72 | } 73 | 74 | 75 | /* content */ 76 | 77 | #container { 78 | width: 75%; 79 | height: 50%; 80 | margin-top: 5rem; 81 | display: grid; 82 | grid-template-columns: repeat(4, 1fr); 83 | /* grid-auto-rows: minmax(550px, 650px); */ 84 | column-gap: 3rem; 85 | row-gap: 7rem; 86 | padding: 0 2.2rem; 87 | font-size: 1.6rem; 88 | } 89 | 90 | #container>div { 91 | height: 100%; 92 | display: flex; 93 | flex-direction: column; 94 | justify-content: space-between; 95 | box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; 96 | } 97 | 98 | #container img { 99 | width: 100%; 100 | } 101 | 102 | #container p:nth-child(2) { 103 | color: #505055; 104 | font-size: 1.5rem; 105 | line-height: 2.5rem; 106 | } 107 | 108 | #container .contentBox { 109 | padding: 0.7rem 1.2rem; 110 | display: flex; 111 | flex-direction: column; 112 | gap: 1.3rem; 113 | } 114 | 115 | #container .mixbox { 116 | display: flex; 117 | justify-content: space-between; 118 | align-items: center; 119 | font-weight: bold; 120 | color: black; 121 | } 122 | 123 | #container .mixbox p:nth-child(1) { 124 | font-size: 1.8rem; 125 | } 126 | 127 | #container .strikep { 128 | text-decoration: line-through; 129 | color: #aaa; 130 | font-size: 1.2rem; 131 | } 132 | 133 | #container .offerp { 134 | color: #ffae6a; 135 | font-size: 1.2rem; 136 | } 137 | 138 | #container .wishListp { 139 | color: black; 140 | font-size: 15px; 141 | text-align: center; 142 | border: solid 1px #aaa; 143 | box-sizing: border-box; 144 | padding-top: 15px; 145 | padding-bottom: 15px; 146 | border-radius: 5px; 147 | margin-top: 5px; 148 | margin-bottom: -5px; 149 | } 150 | 151 | #container .addToBagp { 152 | color: white; 153 | text-align: center; 154 | background-color: rgb(255, 62, 108); 155 | padding: 1.6rem 0; 156 | padding-left: 2.6rem; 157 | border-radius: 5px; 158 | } 159 | 160 | #container .addToBagp::after { 161 | content: "→"; 162 | display: inline-block; 163 | font-size: 2.3rem; 164 | visibility: hidden; 165 | transition: all 300ms; 166 | } 167 | 168 | #container .addToBagp:hover::after { 169 | transform: translateX(1.5rem); 170 | visibility: visible; 171 | } 172 | 173 | #container>div:hover { 174 | box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; 175 | } 176 | 177 | 178 | /* MEDEIA QUERIES FOR TABLET VIEW */ 179 | 180 | @media all and (min-width: 551px) and (max-width: 850px) { 181 | #wrapper { 182 | flex-direction: column; 183 | } 184 | #filter { 185 | display: none; 186 | } 187 | #container { 188 | width: 95%; 189 | margin: auto; 190 | margin-top: 3rem; 191 | grid-template-columns: repeat(3, 1fr); 192 | } 193 | #container .addToBagp:hover::after { 194 | transform: translateX(1.2rem); 195 | } 196 | } 197 | 198 | 199 | /* MEDEIA QUERIES FOR MOBILE VIEW */ 200 | 201 | @media all and (max-width: 551px) { 202 | #wrapper { 203 | flex-direction: column; 204 | } 205 | #filter { 206 | display: none; 207 | } 208 | #container { 209 | width: 95%; 210 | margin: auto; 211 | margin-top: 3rem; 212 | grid-template-columns: repeat(2, 1fr); 213 | } 214 | #container .addToBagp:hover::after { 215 | transform: translateX(1.2rem); 216 | } 217 | } -------------------------------------------------------------------------------- /payment/payment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Document 11 | 12 | 13 | 14 | 29 |
30 |
31 |
32 |

Bank Offer

33 |

10% Instant Discount with Standard Chartered Credit & Debit cards on a min spend of Rs 3,000. TCA

34 |

Show More

35 | 36 |
37 |

Choose Payment Mode

38 |
39 |
40 |
41 | 42 |
Cash On Delivery (Cash/Card/UPI)
43 |
44 |
45 | 46 |
Credit/Debit Card
47 |
48 |
49 | 50 |
PhonePe/Google Pay/BHIM UPI
51 |
52 |
53 | 54 |
Paytm/Payzapp/Wallets
55 |
56 |
57 | 58 |
Net Banking
59 |
60 |
61 | 62 |
EMI/Pay Later
63 |
64 |
65 |
66 |

Cash On Delivery

67 | 68 | 69 |
70 | PAY 71 |
72 |
73 |
74 |
75 |
76 | 77 | 78 | 79 |
80 |
PRICE DETAILS
81 |
82 | Total MRP-- 83 |
84 |
85 | Discount on MRP-- 86 |
87 |
88 | Delivery Charges-- 89 |
90 |
91 | Total Amount-- 92 |
93 |
94 | 95 | 96 | 97 | 98 |
99 | 100 | 101 | 102 | 103 | -------------------------------------------------------------------------------- /Profile/signup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | SignUp 8 | 9 | 10 | 11 | 12 | 13 | 25 | 26 | 27 | 28 | 29 |
30 | 33 | 41 | 45 |
46 |
47 | 48 |
49 | login 50 | sign up 51 |
52 | 53 | 54 | 55 | profile 56 |
57 |
58 | 59 | wishlist 60 |
61 |
62 | 63 | bag 64 |
65 |
66 | 67 | 68 |
69 | 70 | 85 |
86 | 87 |
88 | 89 |
90 |
91 | 92 |
93 | 94 | 116 | 117 |
118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | -------------------------------------------------------------------------------- /Home Living Products/home_furnishing.css: -------------------------------------------------------------------------------- 1 | 2 | #sorting { 3 | width: 100%; 4 | margin-left: 1rem; 5 | margin-top: 15rem; 6 | } 7 | 8 | .filter{ 9 | padding: 10px 20px; 10 | } 11 | 12 | 13 | 14 | *{ 15 | box-sizing: border-box; 16 | } 17 | #wrapper{ 18 | width: 100%; 19 | display: flex; 20 | gap: 3rem; 21 | } 22 | 23 | /* filter */ 24 | #filter { 25 | height: 100%; 26 | width: 23%; 27 | margin-left: 1rem; 28 | margin-top: 5rem; 29 | box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; 30 | display: flex; 31 | flex-direction: column; 32 | gap: 1.2rem; 33 | padding: 1.1rem; 34 | padding-bottom: unset; 35 | } 36 | 37 | #filter > div{ 38 | width: 100%; 39 | height: 100%; 40 | border-bottom: 2px solid #efefee; 41 | display: flex; 42 | flex-direction: column; 43 | align-items: center; 44 | padding-bottom: 2rem; 45 | } 46 | 47 | #filter > div > *{ 48 | width: 90%; 49 | } 50 | #filter > div > h3 ~*{ 51 | display: inline-block; 52 | } 53 | input[type="checkbox" i], input[type="radio" i]{ 54 | cursor: pointer; 55 | margin-right: 1.2rem; 56 | } 57 | 58 | #filter h3{ 59 | margin-bottom: 1.2rem; 60 | font-size: 1.8rem; 61 | font-weight: bold; 62 | } 63 | #filter h3 ~*{ 64 | font-size: 1.6rem; 65 | color: #282c3f; 66 | font-weight: 100; 67 | line-height: 3.2rem; 68 | } 69 | 70 | 71 | /* content */ 72 | #container { 73 | width: 75%; 74 | height: 50%; 75 | margin-top: 5rem; 76 | display: grid; 77 | grid-template-columns: repeat(4,1fr); 78 | /* grid-auto-rows: minmax(550px,650px); */ 79 | column-gap: 3rem; 80 | row-gap: 7rem; 81 | padding: 0 2.2rem; 82 | font-size: 1.6rem; 83 | } 84 | 85 | #container > div { 86 | display: flex; 87 | flex-direction: column; 88 | justify-content: space-between; 89 | box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; 90 | } 91 | 92 | #container img { 93 | width: 100%; 94 | } 95 | 96 | #container p:nth-child(2){ 97 | color: #505055; 98 | font-size: 1.3rem; 99 | 100 | } 101 | 102 | #container .contentBox{ 103 | padding: 0.7rem 1.2rem; 104 | display: flex; 105 | flex-direction: column; 106 | gap:1.3rem; 107 | } 108 | 109 | #container .mixbox { 110 | display: flex; 111 | justify-content: space-between; 112 | align-items: center; 113 | font-weight: bold; 114 | color: black; 115 | } 116 | #container .mixbox p:nth-child(1){ 117 | font-size: 1.8rem; 118 | 119 | } 120 | 121 | #container .strikep { 122 | text-decoration: line-through; 123 | color: #aaa; 124 | font-size: 1.2rem; 125 | } 126 | 127 | #container .offerp { 128 | color: #ffae6a; 129 | font-size: 1.2rem; 130 | } 131 | 132 | #container .wishListp { 133 | color: black; 134 | font-size: 15px; 135 | text-align: center; 136 | border: solid 1px #aaa; 137 | box-sizing: border-box; 138 | padding-top: 15px; 139 | padding-bottom: 15px; 140 | border-radius: 5px; 141 | margin-top: 5px; 142 | margin-bottom: -5px; 143 | } 144 | 145 | #container .addToBagp { 146 | color: white; 147 | text-align: center; 148 | background-color: rgb(255,62,108); 149 | padding: 1.6rem 0; 150 | padding-left:2.6rem; 151 | border-radius: 5px; 152 | } 153 | #container .addToBagp::after{ 154 | content: "→"; 155 | display: inline-block; 156 | font-size: 2.3rem; 157 | visibility: hidden; 158 | transition: all 300ms; 159 | } 160 | #container .addToBagp:hover::after{ 161 | transform: translateX(1.5rem); 162 | visibility: visible; 163 | } 164 | 165 | #container > div:hover{ 166 | box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; 167 | } 168 | 169 | 170 | 171 | /* MEDEIA QUERIES FOR TABLET VIEW */ 172 | @media all and (min-width: 551px) and (max-width: 850px){ 173 | 174 | #wrapper{ 175 | flex-direction:column; 176 | } 177 | #filter{ 178 | display: none; 179 | } 180 | 181 | #container{ 182 | width: 95%; 183 | margin: auto; 184 | margin-top: 3rem; 185 | grid-template-columns: repeat(3, 1fr); 186 | } 187 | #container > div{ 188 | box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; 189 | } 190 | #container .addToBagp:hover::after{ 191 | transform: translateX(1.2rem); 192 | } 193 | } 194 | 195 | /* MEDEIA QUERIES FOR MOBILE VIEW */ 196 | @media all and (max-width: 551px){ 197 | 198 | #wrapper{ 199 | flex-direction:column; 200 | } 201 | #filter{ 202 | display: none; 203 | } 204 | 205 | #container{ 206 | width: 95%; 207 | margin: auto; 208 | margin-top: 3rem; 209 | grid-template-columns: repeat(2, 1fr); 210 | } 211 | #container > div{ 212 | box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; 213 | } 214 | #container .addToBagp:hover::after{ 215 | transform: translateX(1.2rem); 216 | } 217 | } 218 | 219 | -------------------------------------------------------------------------------- /wishlist/cart.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | var cartarr = JSON.parse(localStorage.getItem("BagListObj"))||[]; 4 | 5 | 6 | var itemcount =cartarr.length; 7 | localStorage.setItem("itemcount",itemcount) 8 | 9 | var delivery = 50; 10 | localStorage.setItem("delivery",delivery) 11 | 12 | var MRP = cartarr.reduce(function(sum,a,ind){ 13 | return sum+ +(cartarr[ind].strikedoffprice.split(" ")[1]) 14 | },0); 15 | localStorage.setItem("MRP",MRP) 16 | 17 | var amount = cartarr.reduce(function(sum,a,ind){ 18 | return sum+ +(cartarr[ind].price.split(" ")[1]) 19 | },0); 20 | localStorage.setItem("amount",amount) 21 | 22 | var discount = MRP - amount; 23 | localStorage.setItem("discount",discount) 24 | 25 | if (itemcount != 0) { 26 | total = amount+delivery; 27 | } else { 28 | total = 0; 29 | delivery = 0; 30 | localStorage.setItem("delivery",delivery) 31 | } 32 | 33 | document.querySelector(".amount_pay").innerText= total; 34 | document.querySelector(".filldiscount").innerText= "- "+discount; 35 | document.querySelector(".filldelivery").innerText= delivery; 36 | document.querySelector(".totalprice").innerText= MRP; 37 | document.querySelector(".pricedets").innerText= `PRICE DETAILS ( ${itemcount} Items)`; 38 | 39 | 40 | cartarr.map(function(ele,ind){ 41 | // document.querySelector(".container").innerText = "" 42 | var box = document.createElement("div"); 43 | box.className ="main" 44 | 45 | 46 | var imgbox = document.createElement("div"); 47 | 48 | var image =document.createElement("img"); 49 | image.src = ele.image_url 50 | imgbox.append(image) 51 | 52 | var detailsbox = document.createElement("div"); 53 | 54 | var name =document.createElement("p"); 55 | name.innerText=ele.brand 56 | name.style.fontSize="20px"; 57 | name.style.marginBottom ="-8px" 58 | 59 | 60 | var para =document.createElement("p"); 61 | para.innerText=ele.para ; 62 | para.style.color="gray" 63 | 64 | var price = document.createElement("span"); 65 | price.innerText = ele.price 66 | 67 | var strikedprice = document.createElement("span"); 68 | strikedprice.innerText = ele.strikedoffprice; 69 | strikedprice.style.textDecoration = "line-through"; 70 | strikedprice.style.color ="gray"; 71 | 72 | 73 | var offer = document.createElement("span"); 74 | offer.innerText =ele.offer; 75 | offer.style.color="red"; 76 | 77 | 78 | var pricepara =document.createElement("p"); 79 | pricepara.append(price,strikedprice) 80 | 81 | detailsbox.append(name,para,pricepara,offer) 82 | 83 | var buttonbox = document.createElement("div"); 84 | 85 | var remove =document.createElement("button"); 86 | 87 | remove.innerText ="REMOVE"; 88 | remove.addEventListener("click",function(){ 89 | removeitem(ind) 90 | }) 91 | 92 | 93 | 94 | buttonbox.append (remove) 95 | 96 | 97 | 98 | box.append(imgbox,detailsbox,buttonbox) 99 | 100 | document.querySelector(".container").append(box) 101 | 102 | }) 103 | 104 | document.querySelector(".wishlistlink").addEventListener("click",sendtowish) 105 | function sendtowish (){ 106 | window.location.href ="wishlist.html" 107 | } 108 | 109 | 110 | function removeitem(ind){ 111 | cartarr.splice(ind,1); 112 | localStorage.setItem("BagListObj",JSON.stringify(cartarr)) 113 | window.location.href ="cart.html"; 114 | 115 | } 116 | 117 | document.querySelector(".makeorder").addEventListener("click",profile) 118 | 119 | function profile(){ 120 | window.location.href="../payment/payment.html"; 121 | } 122 | 123 | document.querySelector(".apply").addEventListener("click",discountfun); 124 | 125 | function discountfun(){ 126 | 127 | var payable_amount = +(localStorage.getItem("amount")); 128 | var int_promo = document.querySelector("#promo").value; 129 | 130 | if( payable_amount>300 && int_promo=="MYNTRA300") 131 | { 132 | amount = amount-300; 133 | discount =discount+300; 134 | localStorage.setItem("amount",amount) ; 135 | localStorage.setItem("discount",discount) 136 | document.querySelector(".amount_pay").innerText= amount; 137 | document.querySelector(".filldiscount").innerText= "- "+discount; 138 | 139 | document.querySelector(".apply").removeEventListener("click",discountfun); 140 | } 141 | // console.log( amount, discount) 142 | 143 | } 144 | 145 | document.getElementById('landingPage').addEventListener('click', function(){ 146 | window.location.href = "../index.html"; 147 | 148 | }) 149 | 150 | document.querySelector("#second").addEventListener("click",function(){ 151 | window.location.href="../Profile/signup.html"; 152 | }) 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | -------------------------------------------------------------------------------- /Landingpage/header.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); 2 | 3 | :root{ 4 | font-size: 62.5%; 5 | --primaryFont : 'DM Sans', sans-serif; 6 | --charSpace : 6px; 7 | --primaryColor : #3e4152; 8 | --secondaryColor : #fafbfc; 9 | } 10 | body{ 11 | font-family: var(--primaryFont); 12 | scroll-behavior: smooth; 13 | } 14 | .slider{ 15 | width: 100%; 16 | height: 450px; 17 | overflow: hidden; 18 | } 19 | 20 | .slides{ 21 | width: 500%; 22 | height: 100%; 23 | display: flex; 24 | } 25 | 26 | .slides input{ 27 | display: none; 28 | } 29 | 30 | .slide{ 31 | width: 20%; 32 | transition: 800ms; 33 | } 34 | 35 | .slide img{ 36 | width: 100%; 37 | height: 100%; 38 | } 39 | 40 | 41 | 42 | #flatdiscount{ 43 | position :fixed; 44 | right: 0px; 45 | bottom: 130px; 46 | width: 50px; 47 | height: 250px; 48 | box-sizing:border-box; 49 | padding-left: 10px; 50 | background-color: #535766; 51 | color: #fff; 52 | letter-spacing:1px; 53 | } 54 | #sidePanel{ 55 | font-size:30px; 56 | color: #fcfcfc; 57 | } 58 | #flatdiscount>h1{ 59 | writing-mode: vertical-lr; 60 | height: 200px; 61 | text-align: center; 62 | margin:auto; 63 | font-size: 20px; 64 | font-weight: bolder; 65 | color: #fcfcfc; 66 | 67 | } 68 | body>h1{ 69 | margin: 50px 25px; 70 | margin-top:8rem; 71 | font-size: 3rem; 72 | text-transform: uppercase; 73 | letter-spacing: var(--charSpace); 74 | } 75 | #adDiv 76 | { 77 | margin-top:50px; 78 | } 79 | 80 | #deals, 81 | #best, 82 | #top, 83 | #categories, 84 | #dealsTop, 85 | #unmissable, 86 | #colours, 87 | #topInfluencers, 88 | #budget, 89 | #trending{ 90 | width: 100%; 91 | padding: 1rem; 92 | display: grid; 93 | gap: 1rem; 94 | } 95 | 96 | 97 | 98 | #deals{ 99 | margin: auto; 100 | } 101 | #deals, 102 | #top{ 103 | grid-template-columns: repeat(7,auto); 104 | grid-template-columns: repeat(7,auto); 105 | } 106 | #best,#categories, 107 | #dealsTop, 108 | #unmissable, 109 | #budget, 110 | #trending { 111 | grid-template-columns: repeat(8,auto); 112 | } 113 | 114 | #colours{ 115 | grid-template-columns: repeat(4,auto); 116 | 117 | } 118 | #topInfluencers{ 119 | grid-template-columns: repeat(6,auto); 120 | 121 | } 122 | 123 | 124 | @media only screen and (min-width: 551px) and (max-width: 850px) { 125 | .slider { 126 | height: 250px; 127 | } 128 | .navigation-manual{ 129 | margin-top: 2.5rem; 130 | } 131 | 132 | #deals{ 133 | grid-template-columns: repeat(4, 1fr); 134 | grid-template-rows: repeat(2, auto); 135 | 136 | } 137 | 138 | #best{ 139 | grid-template-columns: repeat(4, 1fr); 140 | grid-template-rows: repeat(4, auto); 141 | } 142 | #top{ 143 | grid-template-columns: repeat(4, 1fr); 144 | grid-template-rows: repeat(2, auto); 145 | } 146 | #categories{ 147 | grid-template-columns: repeat(4, 1fr); 148 | grid-template-rows: repeat(4,auto); 149 | } 150 | #dealsTop{ 151 | grid-template-columns: repeat(4, 1fr); 152 | grid-template-rows: repeat(4,auto); 153 | 154 | } 155 | #unmissable{ 156 | grid-template-columns: repeat(4, 1fr); 157 | grid-template-rows: repeat(2, auto); 158 | 159 | } 160 | #colours{ 161 | grid-template-columns: repeat(2, 1fr); 162 | grid-template-rows: repeat(4, auto); 163 | } 164 | #topInfluencers{ 165 | grid-template-columns: repeat(3, 1fr); 166 | grid-template-rows: repeat(2, auto); 167 | } 168 | #budget{ 169 | grid-template-columns: repeat(4, 1fr); 170 | grid-template-rows: repeat(2, auto); 171 | } 172 | #trending{ 173 | grid-template-columns: repeat(4, 1fr); 174 | grid-template-rows: repeat(2, auto); 175 | } 176 | } 177 | @media all and (max-width: 550px) { 178 | .slider{ 179 | height: 250px; 180 | } 181 | #deals{ 182 | grid-template-columns: repeat(2, 1fr); 183 | grid-template-rows: auto; 184 | } 185 | #deals img{ 186 | width: 85%; 187 | display: block; 188 | margin: auto; 189 | } 190 | #deals > div:nth-child(7){ 191 | border: 2px solid red; 192 | display: none; 193 | } 194 | 195 | #best{ 196 | grid-template-columns: repeat(2, 1fr); 197 | grid-template-rows: auto; 198 | 199 | } 200 | #top{ 201 | margin-top: auto; 202 | grid-template-columns: repeat(2, 1fr); 203 | grid-template-rows:auto; 204 | } 205 | #categories{ 206 | grid-template-columns: repeat(2, 1fr); 207 | grid-template-rows: auto; 208 | } 209 | #dealsTop{ 210 | grid-template-columns: repeat(2, 1fr); 211 | grid-template-rows: auto; 212 | 213 | } 214 | #unmissable{ 215 | grid-template-columns: repeat(3, 1fr); 216 | grid-template-rows: auto; 217 | 218 | } 219 | #colours{ 220 | grid-template-columns: repeat(2, 1fr); 221 | grid-template-rows: repeat(4, auto); 222 | } 223 | #topInfluencers{ 224 | grid-template-columns: repeat(2, 1fr); 225 | grid-template-rows: auto; 226 | /* height:100px; */ 227 | } 228 | #budget{ 229 | grid-template-columns: repeat(3, 1fr); 230 | grid-template-rows: auto; 231 | } 232 | #trending{ 233 | grid-template-columns: repeat(2, 1fr); 234 | grid-template-rows: auto; 235 | } 236 | } 237 | -------------------------------------------------------------------------------- /wishlist/cart.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); 2 | *{ 3 | box-sizing: border-box; 4 | } 5 | body{ 6 | font-family: 'DM Sans', sans-serif; 7 | } 8 | #upperbar{ 9 | display: flex; 10 | justify-content: space-between; 11 | border-bottom: 1px solid #F5F5F6; 12 | margin: 0px -8px; 13 | color: gray; 14 | align-items: center; 15 | height: 79px; 16 | box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; 17 | } 18 | #upperbar >div{ 19 | height: 50px; 20 | display: flex; 21 | align-items: center; 22 | margin: 5px 20px; 23 | justify-content: space-between; 24 | 25 | } 26 | #upperbar >div>img{ 27 | height: 100%; 28 | cursor: pointer; 29 | } 30 | #upperbar >div:first-child{ 31 | margin-left: 50px; 32 | } 33 | #upperbar >div:last-child{ 34 | margin-right: 50px; 35 | } 36 | #upperbar p > #first{ 37 | color: #14cda8; 38 | border-bottom: 2px solid #14cda8; 39 | padding-bottom: 5px; 40 | } 41 | #upperbar p > *{ 42 | cursor: pointer; 43 | } 44 | #timerbox{ 45 | text-align: center; 46 | border-bottom: 1px solid #F5F5F6; 47 | color: gray; 48 | font-size: 20px; 49 | } 50 | #timerbox span{ 51 | color:#fe3f9b; 52 | } 53 | .container{ 54 | margin-top: 20px; 55 | display: grid; 56 | grid-template-columns: repeat(1,1fr); 57 | } 58 | .main{ 59 | width: 80%; 60 | padding: 1rem; 61 | margin-top: 20px; 62 | display: flex; 63 | border-radius: 4px; 64 | justify-content: space-between; 65 | align-items: center; 66 | box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; 67 | } 68 | .main >div{ 69 | padding: 8px ; 70 | width: 30%; 71 | } 72 | .main img{ 73 | width: 100%; 74 | } 75 | .main >div:last-child{ 76 | display: flex; 77 | flex-direction: column; 78 | justify-content: center; 79 | align-items: center; 80 | } 81 | .main button{ 82 | width: 80%; 83 | } 84 | 85 | .wishlistlink{ 86 | margin-top: 40px; 87 | height: 40px; 88 | margin-left: 144px; 89 | width: 45.7%; 90 | border :2px solid #F5F5F6; 91 | border-radius: 4px; 92 | display: flex; 93 | font-size: 20px; 94 | align-items: center; 95 | cursor: pointer; 96 | } 97 | .wishlistlink >p, .wishlistlink >i{ 98 | margin: 5px; 99 | } 100 | .wishlistlink > p:hover{ 101 | color:#32cd32; 102 | font-weight: 900; 103 | border-bottom: 2px solid #ff3f6c; 104 | } 105 | .container span{ 106 | margin: 4px; 107 | } 108 | .orderbox{ 109 | align-self: flex-start; 110 | margin-top: 80px; 111 | padding: 20px; 112 | border-radius: 4px; 113 | box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; 114 | } 115 | .con_ord{ 116 | display:grid; 117 | grid-template-columns: 60% 35%; 118 | justify-content: center; 119 | } 120 | .orderbox>div{ 121 | display: flex; 122 | justify-content: space-between; 123 | margin: 10px 0px; 124 | color: #535766; 125 | 126 | } 127 | .promocode{ 128 | display:block 129 | } 130 | button{ 131 | background-color: #ff3f6c; 132 | color: white; 133 | border: 10px; 134 | outline: none; 135 | cursor: pointer; 136 | padding: 1rem 2rem; 137 | border-radius: 5px; 138 | } 139 | .amount{ 140 | font-weight: bold; 141 | } 142 | .filldiscount{ 143 | color:#32cd32; 144 | text-decoration: none; 145 | } 146 | .pricedets,.amount{ 147 | border-bottom: 1px solid gray; 148 | padding-bottom: 20px; 149 | } 150 | .orderbox .makeorder,.apply{ 151 | justify-content: center; 152 | background-color: #ff3f6c; 153 | padding: 0.7rem 1.2rem; 154 | color: white; 155 | font-weight: bold; 156 | border-radius: 5px; 157 | cursor: pointer; 158 | } 159 | .orderbox .makeorder{ 160 | margin-top: 30px; 161 | } 162 | #promo{ 163 | border: 1px solid #ff3f6c; 164 | padding-left: 15px; 165 | border-radius: 5px; 166 | 167 | } 168 | .amount + p{ 169 | text-align: center; 170 | font-size: 20px; 171 | } 172 | 173 | 174 | 175 | 176 | /* MEDEIA QUERIES FOR TABLET VIEW */ 177 | @media all and (min-width: 721px) and (max-width: 850px){ 178 | .container{ 179 | margin-top: 20px; 180 | margin-left: 10px; 181 | width: 60%; 182 | display: -moz-grid-line; 183 | grid-template-columns: repeat(1,1fr); 184 | gap: 10px; 185 | } 186 | .promocode{ 187 | display: flex; 188 | flex-direction: column; 189 | 190 | } 191 | .apply{ 192 | width: 30%; 193 | margin: auto; 194 | text-align: center; 195 | margin-top: 10px; 196 | } 197 | #promo{ 198 | height: 30px; 199 | } 200 | 201 | } 202 | 203 | @media all and (max-width: 720px){ 204 | .con_ord{ 205 | display:grid; 206 | grid-template-columns: repeat(1,1fr); 207 | padding: 5px; 208 | } 209 | .container{ 210 | margin: auto; 211 | width: 90%; 212 | display: -moz-grid-line; 213 | grid-template-columns: repeat(1,1fr); 214 | gap: 10px; 215 | } 216 | .orderbox{ 217 | height: 400px; 218 | width: 50%; 219 | margin: auto; 220 | border :2px solid #F5F5F6; 221 | margin-top: 80px; 222 | padding: 20px; 223 | border-radius: 4px; 224 | } 225 | #upperbar >div{ 226 | margin: 5px 5px; 227 | 228 | } 229 | #upperbar >div:first-child{ 230 | margin-left: 10px; 231 | } 232 | #upperbar >div:last-child{ 233 | margin-right: 10px; 234 | } 235 | .footer{ 236 | display: flex; 237 | flex-direction: column; 238 | } 239 | 240 | } 241 | -------------------------------------------------------------------------------- /wishlist/wishlist.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Wish-list 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 21 | 29 | 33 |
34 |
35 | 36 |
37 | login 38 | sign up 39 |
40 | 41 | 42 | profile 43 |
44 |
45 | 46 | wishlist 47 |
48 |
49 | 50 | bag 51 |
52 |
53 | 54 | 55 |
56 | 57 | 72 |
73 |
74 | 75 | 76 |

My Wishlist

77 | 78 |
79 | 80 |
81 | 82 | 83 | 152 | 153 | 154 | 155 | 156 | -------------------------------------------------------------------------------- /payment/confetti.js: -------------------------------------------------------------------------------- 1 | var confetti = { 2 | maxCount: 150, //set max confetti count 3 | speed: 2, //set the particle animation speed 4 | frameInterval: 15, //the confetti animation frame interval in milliseconds 5 | alpha: 1.0, //the alpha opacity of the confetti (between 0 and 1, where 1 is opaque and 0 is invisible) 6 | gradient: false, //whether to use gradients for the confetti particles 7 | start: null, //call to start confetti animation (with optional timeout in milliseconds, and optional min and max random confetti count) 8 | stop: null, //call to stop adding confetti 9 | toggle: null, //call to start or stop the confetti animation depending on whether it's already running 10 | pause: null, //call to freeze confetti animation 11 | resume: null, //call to unfreeze confetti animation 12 | togglePause: null, //call to toggle whether the confetti animation is paused 13 | remove: null, //call to stop the confetti animation and remove all confetti immediately 14 | isPaused: null, //call and returns true or false depending on whether the confetti animation is paused 15 | isRunning: null //call and returns true or false depending on whether the animation is running 16 | }; 17 | 18 | (function() { 19 | confetti.start = startConfetti; 20 | confetti.stop = stopConfetti; 21 | confetti.toggle = toggleConfetti; 22 | confetti.pause = pauseConfetti; 23 | confetti.resume = resumeConfetti; 24 | confetti.togglePause = toggleConfettiPause; 25 | confetti.isPaused = isConfettiPaused; 26 | confetti.remove = removeConfetti; 27 | confetti.isRunning = isConfettiRunning; 28 | var supportsAnimationFrame = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame; 29 | var colors = ["rgba(30,144,255,", "rgba(107,142,35,", "rgba(255,215,0,", "rgba(255,192,203,", "rgba(106,90,205,", "rgba(173,216,230,", "rgba(238,130,238,", "rgba(152,251,152,", "rgba(70,130,180,", "rgba(244,164,96,", "rgba(210,105,30,", "rgba(220,20,60,"]; 30 | var streamingConfetti = false; 31 | var animationTimer = null; 32 | var pause = false; 33 | var lastFrameTime = Date.now(); 34 | var particles = []; 35 | var waveAngle = 0; 36 | var context = null; 37 | 38 | function resetParticle(particle, width, height) { 39 | particle.color = colors[(Math.random() * colors.length) | 0] + (confetti.alpha + ")"); 40 | particle.color2 = colors[(Math.random() * colors.length) | 0] + (confetti.alpha + ")"); 41 | particle.x = Math.random() * width; 42 | particle.y = Math.random() * height - height; 43 | particle.diameter = Math.random() * 10 + 5; 44 | particle.tilt = Math.random() * 10 - 10; 45 | particle.tiltAngleIncrement = Math.random() * 0.07 + 0.05; 46 | particle.tiltAngle = Math.random() * Math.PI; 47 | return particle; 48 | } 49 | 50 | function toggleConfettiPause() { 51 | if (pause) 52 | resumeConfetti(); 53 | else 54 | pauseConfetti(); 55 | } 56 | 57 | function isConfettiPaused() { 58 | return pause; 59 | } 60 | 61 | function pauseConfetti() { 62 | pause = true; 63 | } 64 | 65 | function resumeConfetti() { 66 | pause = false; 67 | runAnimation(); 68 | } 69 | 70 | function runAnimation() { 71 | if (pause) 72 | return; 73 | else if (particles.length === 0) { 74 | context.clearRect(0, 0, window.innerWidth, window.innerHeight); 75 | animationTimer = null; 76 | } else { 77 | var now = Date.now(); 78 | var delta = now - lastFrameTime; 79 | if (!supportsAnimationFrame || delta > confetti.frameInterval) { 80 | context.clearRect(0, 0, window.innerWidth, window.innerHeight); 81 | updateParticles(); 82 | drawParticles(context); 83 | lastFrameTime = now - (delta % confetti.frameInterval); 84 | } 85 | animationTimer = requestAnimationFrame(runAnimation); 86 | } 87 | } 88 | 89 | function startConfetti(timeout, min, max) { 90 | var width = window.innerWidth; 91 | var height = window.innerHeight; 92 | window.requestAnimationFrame = (function() { 93 | return window.requestAnimationFrame || 94 | window.webkitRequestAnimationFrame || 95 | window.mozRequestAnimationFrame || 96 | window.oRequestAnimationFrame || 97 | window.msRequestAnimationFrame || 98 | function (callback) { 99 | return window.setTimeout(callback, confetti.frameInterval); 100 | }; 101 | })(); 102 | var canvas = document.getElementById("confetti-canvas"); 103 | if (canvas === null) { 104 | canvas = document.createElement("canvas"); 105 | canvas.setAttribute("id", "confetti-canvas"); 106 | canvas.setAttribute("style", "display:block;z-index:999999;pointer-events:none;position:fixed;top:0"); 107 | document.body.prepend(canvas); 108 | canvas.width = width; 109 | canvas.height = height; 110 | window.addEventListener("resize", function() { 111 | canvas.width = window.innerWidth; 112 | canvas.height = window.innerHeight; 113 | }, true); 114 | context = canvas.getContext("2d"); 115 | } else if (context === null) 116 | context = canvas.getContext("2d"); 117 | var count = confetti.maxCount; 118 | if (min) { 119 | if (max) { 120 | if (min == max) 121 | count = particles.length + max; 122 | else { 123 | if (min > max) { 124 | var temp = min; 125 | min = max; 126 | max = temp; 127 | } 128 | count = particles.length + ((Math.random() * (max - min) + min) | 0); 129 | } 130 | } else 131 | count = particles.length + min; 132 | } else if (max) 133 | count = particles.length + max; 134 | while (particles.length < count) 135 | particles.push(resetParticle({}, width, height)); 136 | streamingConfetti = true; 137 | pause = false; 138 | runAnimation(); 139 | if (timeout) { 140 | window.setTimeout(stopConfetti, timeout); 141 | } 142 | } 143 | 144 | function stopConfetti() { 145 | streamingConfetti = false; 146 | } 147 | 148 | function removeConfetti() { 149 | stop(); 150 | pause = false; 151 | particles = []; 152 | } 153 | 154 | function toggleConfetti() { 155 | if (streamingConfetti) 156 | stopConfetti(); 157 | else 158 | startConfetti(); 159 | } 160 | 161 | function isConfettiRunning() { 162 | return streamingConfetti; 163 | } 164 | 165 | function drawParticles(context) { 166 | var particle; 167 | var x, y, x2, y2; 168 | for (var i = 0; i < particles.length; i++) { 169 | particle = particles[i]; 170 | context.beginPath(); 171 | context.lineWidth = particle.diameter; 172 | x2 = particle.x + particle.tilt; 173 | x = x2 + particle.diameter / 2; 174 | y2 = particle.y + particle.tilt + particle.diameter / 2; 175 | if (confetti.gradient) { 176 | var gradient = context.createLinearGradient(x, particle.y, x2, y2); 177 | gradient.addColorStop("0", particle.color); 178 | gradient.addColorStop("1.0", particle.color2); 179 | context.strokeStyle = gradient; 180 | } else 181 | context.strokeStyle = particle.color; 182 | context.moveTo(x, particle.y); 183 | context.lineTo(x2, y2); 184 | context.stroke(); 185 | } 186 | } 187 | 188 | function updateParticles() { 189 | var width = window.innerWidth; 190 | var height = window.innerHeight; 191 | var particle; 192 | waveAngle += 0.01; 193 | for (var i = 0; i < particles.length; i++) { 194 | particle = particles[i]; 195 | if (!streamingConfetti && particle.y < -15) 196 | particle.y = height + 100; 197 | else { 198 | particle.tiltAngle += particle.tiltAngleIncrement; 199 | particle.x += Math.sin(waveAngle) - 0.5; 200 | particle.y += (Math.cos(waveAngle) + particle.diameter + confetti.speed) * 0.5; 201 | particle.tilt = Math.sin(particle.tiltAngle) * 15; 202 | } 203 | if (particle.x > width + 20 || particle.x < -20 || particle.y > height) { 204 | if (streamingConfetti && particles.length <= confetti.maxCount) 205 | resetParticle(particle, width, height); 206 | else { 207 | particles.splice(i, 1); 208 | i--; 209 | } 210 | } 211 | } 212 | } 213 | })(); -------------------------------------------------------------------------------- /Homepages/homeLiving.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Home and Living - Buy Interior Decoration Products and Accessories Online in India 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 20 | 28 | 32 |
33 |
34 | 35 |
36 | login 37 | sign up 38 |
39 | 40 | 41 | profile 42 |
43 |
44 | 45 | wishlist 46 |
47 |
48 | 49 | bag 50 |
51 |
52 | 53 | 54 |
55 | 56 | 71 |
72 |
73 | 74 | 80 | 81 | 82 |
83 |
84 |

nice to see you, come on in!

85 |
86 |
category1
87 |
category2
88 |
category3
89 |
category4
90 |
category5
91 |
category6
92 |
93 |
94 | 97 |
98 | 99 | 100 |
101 |
trends
102 |
103 |
trend1
104 |
trend2
105 |
trend3
106 |
107 |
108 | 109 | 110 |
111 |
trends
112 |
113 |
brand1
114 |
brand2
115 |
brand3
116 |
brand4
117 |
brand5
118 |
119 |
120 | 121 | 122 | 123 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | E-commerce 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 27 | 28 | 29 | 30 |
31 | 32 |

FLAT ₹300 OFF

33 |
34 | 35 | 36 |
37 | 40 | 48 | 52 |
53 |
54 | 55 |
56 | login 57 | sign up 58 |
59 | 60 | 61 | profile 62 |
63 |
64 | 65 | wishlist 66 |
67 |
68 | 69 | 70 | bag 71 |
72 |
73 | 74 |
75 | 76 | 91 |
92 |
93 | 94 | 95 |
96 |
97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 |
105 | 107 |
108 |
109 | 111 |
112 |
113 | 115 |
116 |
117 | 119 |
120 |
121 | 122 | 123 | 129 |
130 | 131 | 132 |

DEALS OF THE DAY

133 |
134 | 135 |
136 |

BEST OF EXCLUSIVE BRANDS

137 |
138 |
139 |

TOP PICKS

140 |
141 |
142 |

CATEGORIES TO BAG

143 |
144 |
145 |

DEALS ON TOP BRANDS

146 |
147 |
148 |

UNMISSABLE THIS SEASON

149 |
150 |
151 |

COLOURS OF THE SEASON

152 |
153 | 154 |
155 |

TOP INFLUENCERS EXCLUSIVE STYLE

156 |
157 |

BUDGET PICKS INFLUENCERS LOVE

158 |
159 |

TRENDING OUTFIT BY INFLUENCERS

160 | 162 | 163 | 164 | 165 |
166 |
167 |
168 |
169 |

online shopping

170 |

men

171 |

women

172 |

home & living

173 |

beauty

174 |

gift cards

175 |

insiderNew

176 |
177 |
178 |

useful links

179 |

men

180 |

faq

181 |

t&c

182 |

terms of use

183 |

track order

184 |

shipping

185 |

cancellation

186 |

returns

187 |

whitehat

188 |

blog

189 |

careers

190 |

privacy policy

191 |

site map

192 |

corporate information

193 |
194 |
195 |

experience app on mobile

196 | android 197 | ios 198 |

keep in touch

199 |
200 | 201 | 202 | 203 | 204 |
205 |
206 |
207 | 217 |
218 | 219 |
220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | -------------------------------------------------------------------------------- /Landingpage/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | TEAM EXCALIBUR 9 | 10 | 11 | 12 | 13 | 14 | <<<<<<< HEAD 15 | 16 | 17 | ======= 18 | 19 | 20 | >>>>>>> 7cd3a95724dfc46648a84b0a101d5e97bee94c97 21 | 22 | 23 | 32 | 33 | 34 | 35 |
36 | 37 |

FLAT ₹300 OFF

38 |
39 | 40 | 41 |
42 | 45 | 53 | 57 |
58 |
59 | 60 |
61 | login 62 | sign up 63 |
64 | 65 | 66 | profile 67 |
68 |
69 | 70 | wishlist 71 |
72 |
73 | 74 | 75 | bag 76 |
77 |
78 | 79 |
80 | 81 | 96 |
97 |
98 | 99 | 100 |
101 |
102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 |
110 | 112 |
113 |
114 | 116 |
117 |
118 | 120 |
121 |
122 | 124 |
125 |
126 | 127 | 128 | 134 |
135 | 136 | 137 |

DEALS OF THE DAY

138 |
139 | 140 |
141 |

BEST OF EXCLUSIVE BRANDS

142 |
143 |
144 |

TOP PICKS

145 |
146 |
147 |

CATEGORIES TO BAG

148 |
149 |
150 |

DEALS ON TOP BRANDS

151 |
152 |
153 |

UNMISSABLE THIS SEASON

154 |
155 |
156 |

COLOURS OF THE SEASON

157 |
158 | 159 |
160 |

TOP INFLUENCERS EXCLUSIVE STYLE

161 |
162 |

BUDGET PICKS INFLUENCERS LOVE

163 |
164 |

TRENDING OUTFIT BY INFLUENCERS

165 | 167 | 168 | 169 | 170 |
171 |
172 |
173 |
174 |

online shopping

175 |

men

176 |

women

177 |

home & living

178 |

beauty

179 |

gift cards

180 |

insiderNew

181 |
182 |
183 |

useful links

184 |

men

185 |

faq

186 |

t&c

187 |

terms of use

188 |

track order

189 |

shipping

190 |

cancellation

191 |

returns

192 |

whitehat

193 |

blog

194 |

careers

195 |

privacy policy

196 |

site map

197 |

corporate information

198 |
199 |
200 |

experience app on mobile

201 | android 202 | ios 203 |

keep in touch

204 |
205 | 206 | 207 | 208 | 209 |
210 |
211 |
212 | 222 |
223 | 224 |
225 | 226 | 227 | 228 | <<<<<<< HEAD 229 | 230 | ======= 231 | 232 | >>>>>>> 7cd3a95724dfc46648a84b0a101d5e97bee94c97 233 | 234 | 235 | 236 | -------------------------------------------------------------------------------- /womensdata/style&js/womestyle.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); 2 | #sorting { 3 | width: 100%; 4 | margin-left: 1rem; 5 | margin-top: 15rem; 6 | } 7 | 8 | .filter { 9 | padding: 10px 20px; 10 | } 11 | 12 | body { 13 | font-family: 'DM Sans', sans-serif; 14 | } 15 | 16 | header { 17 | width: 100%; 18 | height: 100px; 19 | box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px; 20 | display: flex; 21 | justify-content: space-evenly; 22 | align-items: center; 23 | position: fixed; 24 | top: 0; 25 | left: 0; 26 | right: 0; 27 | background-color: #ffff; 28 | opacity: 1; 29 | } 30 | 31 | header>* { 32 | height: 100%; 33 | } 34 | 35 | #logo { 36 | width: 12%; 37 | } 38 | 39 | #logo>img { 40 | width: 80%; 41 | margin-top: 2rem; 42 | cursor: pointer; 43 | } 44 | 45 | #nav_bar { 46 | width: 50%; 47 | list-style: none; 48 | padding: 0; 49 | text-transform: uppercase; 50 | font-size: 15px; 51 | letter-spacing: 0.7px; 52 | color: #282c3f; 53 | font-family: var(--primaryFont); 54 | font-weight: bold; 55 | text-align: center; 56 | display: flex; 57 | justify-content: space-around; 58 | align-items: center; 59 | flex-wrap: wrap; 60 | } 61 | 62 | #nav_bar a { 63 | text-decoration: none; 64 | color: unset; 65 | display: block; 66 | height: 50%; 67 | padding-top: 4.5rem; 68 | } 69 | 70 | #nav_bar li:hover a { 71 | border-bottom: 5px solid #f58fa0; 72 | } 73 | 74 | #nav_bar li:nth-child(1):hover a { 75 | border-bottom: 5px solid #ff4500; 76 | } 77 | 78 | #nav_bar li:nth-child(2):hover a { 79 | border-bottom: 5px solid #ff69b4; 80 | } 81 | 82 | #nav_bar li:nth-child(3):hover a { 83 | border-bottom: 5px solid #ffa500; 84 | } 85 | 86 | #nav_bar li:nth-child(4):hover a { 87 | border-bottom: 5px solid #f2c210; 88 | } 89 | 90 | #nav_bar li:nth-child(5):hover a { 91 | border-bottom: 5px solid #0db7af; 92 | } 93 | 94 | #nav_bar li { 95 | height: 100%; 96 | } 97 | 98 | #nav_bar #studio { 99 | position: relative; 100 | } 101 | 102 | #nav_bar span { 103 | color: red; 104 | position: absolute; 105 | top: 30%; 106 | left: 105%; 107 | font-size: 1.2rem; 108 | font-weight: 700; 109 | } 110 | 111 | #search { 112 | width: 40%; 113 | display: flex; 114 | align-items: center; 115 | justify-content: flex-end; 116 | font-size: 14px; 117 | color: #696e79; 118 | position: relative; 119 | } 120 | 121 | #search>#search_bar { 122 | display: inline-block; 123 | width: 82%; 124 | height: 18px; 125 | line-height: 24px; 126 | padding: 1.5rem; 127 | padding-left: 5rem; 128 | background-color: #f5f5f6; 129 | border: none; 130 | border-radius: 0.3rem; 131 | color: #696e79; 132 | letter-spacing: 0.5px; 133 | } 134 | 135 | #search>#search_bar:focus { 136 | outline: 0; 137 | background-color: #fff; 138 | box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset; 139 | } 140 | 141 | #search #search_icon { 142 | position: absolute; 143 | left: 3rem; 144 | } 145 | 146 | #right_icon { 147 | width: 24%; 148 | display: flex; 149 | font-size: 1.5rem; 150 | font-weight: lighter; 151 | text-transform: capitalize; 152 | cursor: pointer; 153 | } 154 | 155 | #right_icon>div { 156 | width: 33%; 157 | display: flex; 158 | flex-direction: column; 159 | align-items: center; 160 | justify-content: center; 161 | gap: 5px; 162 | } 163 | 164 | #right_icon i { 165 | font-size: 2rem; 166 | } 167 | 168 | #container>p { 169 | font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; 170 | font-style: italic; 171 | } 172 | 173 | footer { 174 | width: 100%; 175 | padding-bottom: 8rem; 176 | background-color: var(--secondaryColor); 177 | } 178 | 179 | section, 180 | hr { 181 | width: 75%; 182 | margin: auto; 183 | margin-top: 4rem; 184 | } 185 | 186 | section { 187 | font-size: 1.5rem; 188 | } 189 | 190 | hr { 191 | margin-top: 1rem; 192 | color: #eeeeee; 193 | } 194 | 195 | footer h4 { 196 | text-transform: uppercase; 197 | color: #505050; 198 | } 199 | 200 | footer>#section_1 { 201 | padding: 5rem 0 2rem; 202 | display: flex; 203 | justify-content: space-between; 204 | } 205 | 206 | #section_1>#left { 207 | width: 65%; 208 | color: #868585; 209 | font-weight: 100; 210 | text-transform: capitalize; 211 | line-height: 2.7rem; 212 | display: flex; 213 | } 214 | 215 | #left>* { 216 | flex: 1; 217 | } 218 | 219 | #left #latest { 220 | color: #fff; 221 | background-color: #ed3833; 222 | margin-left: 0.5rem; 223 | padding: 1px 1rem; 224 | font-size: 1.2rem; 225 | border-radius: 10px; 226 | } 227 | 228 | #left>div:nth-child(3) { 229 | flex: 1.5; 230 | } 231 | 232 | #section_1 #social_connect { 233 | margin-top: 2rem; 234 | } 235 | 236 | #social_connect+div { 237 | font-size: 2.5rem; 238 | display: flex; 239 | gap: 1.5rem; 240 | } 241 | 242 | #section_1 h4 { 243 | margin-bottom: 2rem; 244 | } 245 | 246 | #section_1 img { 247 | height: 42px; 248 | } 249 | 250 | #section_1>#right { 251 | width: 30%; 252 | } 253 | 254 | #right>div { 255 | display: flex; 256 | gap: 2rem; 257 | } 258 | 259 | #right>div:nth-child(2) { 260 | margin-top: 3rem; 261 | } 262 | 263 | #right img { 264 | display: inline-block; 265 | width: 48px; 266 | height: 40px; 267 | margin-top: 2px; 268 | } 269 | 270 | #right span { 271 | font-weight: 700; 272 | } 273 | 274 | #section_2 { 275 | display: flex; 276 | align-items: center; 277 | justify-content: space-between; 278 | } 279 | 280 | #section_2>div { 281 | width: 85%; 282 | background-color: #aaa; 283 | } 284 | 285 | #section_3 { 286 | margin-top: 3rem; 287 | font-size: 1.5rem; 288 | } 289 | 290 | #section_3 a { 291 | display: inline-block; 292 | text-decoration: none; 293 | color: #aaa; 294 | padding-right: 1rem; 295 | margin: 4px; 296 | border-right: 1px solid #aaa; 297 | text-transform: capitalize; 298 | } 299 | 300 | #section_4 { 301 | margin-top: 3rem; 302 | display: flex; 303 | justify-content: space-between; 304 | } 305 | 306 | #section_4 a { 307 | font-size: 2rem; 308 | text-transform: capitalize; 309 | text-decoration: none; 310 | } 311 | 312 | #section1 { 313 | background-color: rgb(250, 251, 252); 314 | } 315 | 316 | :root { 317 | font-size: 62.5%; 318 | --primaryFont: "DM Sans", sans-serif; 319 | --charSpace: 6px; 320 | --primaryColor: #3e4152; 321 | --secondaryColor: #fafbfc; 322 | } 323 | 324 | #wrapper { 325 | width: 100%; 326 | display: flex; 327 | gap: 3rem; 328 | } 329 | 330 | 331 | /* filter */ 332 | 333 | #filter { 334 | height: 100%; 335 | width: 23%; 336 | margin-left: 1rem; 337 | margin-top: 5rem; 338 | box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; 339 | display: flex; 340 | flex-direction: column; 341 | gap: 1.2rem; 342 | padding: 1.1rem; 343 | padding-bottom: unset; 344 | } 345 | 346 | #filter>div { 347 | width: 100%; 348 | height: 100%; 349 | border-bottom: 2px solid #efefee; 350 | display: flex; 351 | flex-direction: column; 352 | align-items: center; 353 | padding-bottom: 2rem; 354 | } 355 | 356 | #filter>div>* { 357 | width: 90%; 358 | } 359 | 360 | #filter>div>h3~* { 361 | display: inline-block; 362 | } 363 | 364 | input[type="checkbox" i], 365 | input[type="radio" i] { 366 | cursor: pointer; 367 | margin-right: 1.2rem; 368 | } 369 | 370 | #filter h3 { 371 | margin-bottom: 1.2rem; 372 | font-size: 1.8rem; 373 | font-weight: bold; 374 | } 375 | 376 | #filter h3~* { 377 | font-size: 1.6rem; 378 | color: #282c3f; 379 | font-weight: 100; 380 | line-height: 3.2rem; 381 | } 382 | 383 | #container { 384 | width: 75%; 385 | height: 50%; 386 | margin-top: 5rem; 387 | display: grid; 388 | grid-template-columns: repeat(4, 1fr); 389 | column-gap: 3rem; 390 | row-gap: 7rem; 391 | padding: 0 2.2rem; 392 | font-size: 1.6rem; 393 | } 394 | 395 | #container>div { 396 | display: flex; 397 | flex-direction: column; 398 | justify-content: space-between; 399 | box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; 400 | } 401 | 402 | #container img { 403 | width: 100%; 404 | } 405 | 406 | #container p:nth-child(2) { 407 | color: #505055; 408 | font-size: 1.5rem; 409 | line-height: 2.5rem; 410 | } 411 | 412 | #container .contentBox { 413 | padding: 0.7rem 1.2rem; 414 | display: flex; 415 | flex-direction: column; 416 | gap: 1.3rem; 417 | } 418 | 419 | #container .mixbox { 420 | display: flex; 421 | justify-content: space-between; 422 | align-items: center; 423 | font-weight: bold; 424 | color: black; 425 | } 426 | 427 | #container .mixbox p:nth-child(1) { 428 | font-size: 1.8rem; 429 | } 430 | 431 | #container .strikep { 432 | text-decoration: line-through; 433 | color: #aaa; 434 | font-size: 1.2rem; 435 | } 436 | 437 | #container .offerp { 438 | color: #ffae6a; 439 | font-size: 1.2rem; 440 | } 441 | 442 | #container .wishListp { 443 | color: black; 444 | font-size: 15px; 445 | text-align: center; 446 | border: solid 1px #aaa; 447 | box-sizing: border-box; 448 | padding-top: 15px; 449 | padding-bottom: 15px; 450 | border-radius: 5px; 451 | margin-top: 5px; 452 | margin-bottom: -5px; 453 | } 454 | 455 | #container .addToBagp { 456 | color: white; 457 | text-align: center; 458 | background-color: rgb(255, 62, 108); 459 | padding: 1.6rem 0; 460 | padding-left: 2.6rem; 461 | border-radius: 5px; 462 | } 463 | 464 | #container .addToBagp::after { 465 | content: "→"; 466 | display: inline-block; 467 | font-size: 2.3rem; 468 | visibility: hidden; 469 | transition: all 300ms; 470 | } 471 | 472 | #container .addToBagp:hover::after { 473 | transform: translateX(1.5rem); 474 | visibility: visible; 475 | } 476 | 477 | #container>div:hover { 478 | box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; 479 | } 480 | 481 | 482 | /* MEDEIA QUERIES FOR TABLET VIEW */ 483 | 484 | @media all and (min-width: 551px) and (max-width: 850px) { 485 | #wrapper { 486 | flex-direction: column; 487 | } 488 | #filter { 489 | display: none; 490 | } 491 | #container { 492 | width: 95%; 493 | margin: auto; 494 | margin-top: 3rem; 495 | grid-template-columns: repeat(3, 1fr); 496 | } 497 | #container>div { 498 | box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; 499 | } 500 | #container .addToBagp:hover::after { 501 | transform: translateX(1.2rem); 502 | } 503 | } 504 | 505 | @media all and (max-width: 551px) { 506 | #wrapper { 507 | flex-direction: column; 508 | } 509 | #filter { 510 | display: none; 511 | } 512 | #container { 513 | width: 95%; 514 | margin: auto; 515 | margin-top: 3rem; 516 | grid-template-columns: repeat(2, 1fr); 517 | } 518 | #container>div { 519 | box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; 520 | } 521 | #container .addToBagp:hover::after { 522 | transform: translateX(1.2rem); 523 | } 524 | } 525 | 526 | #reggDropdown { 527 | position: relative; 528 | } 529 | 530 | #reggDropdown>#drop { 531 | width: 20rem; 532 | height: 0; 533 | padding-right: 1rem; 534 | padding-bottom: 1rem; 535 | position: absolute; 536 | top: 100%; 537 | right: 0; 538 | visibility: hidden; 539 | display: flex; 540 | flex-direction: column; 541 | justify-content: space-around; 542 | align-items: flex-end; 543 | border-radius: 1.5rem; 544 | cursor: default; 545 | background-color: #fff; 546 | box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; 547 | transition: all 500ms; 548 | } 549 | 550 | #reggDropdown a { 551 | width: 85%; 552 | text-decoration: none; 553 | color: unset; 554 | display: inline-block; 555 | text-align: right; 556 | border-radius: 1rem; 557 | padding: 1.5rem; 558 | margin-top: 1rem; 559 | transition: all 500ms; 560 | } 561 | 562 | #reggDropdown:hover #drop { 563 | visibility: visible; 564 | width: 20rem; 565 | height: 15rem; 566 | } 567 | 568 | #reggDropdown>#drop .dropList { 569 | font-size: 0; 570 | } 571 | 572 | #reggDropdown:hover>#drop .dropList { 573 | font-size: 2rem; 574 | } 575 | 576 | #reggDropdown a:hover { 577 | background-color: #f8d7cf; 578 | } -------------------------------------------------------------------------------- /menspage/mens.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Men 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 23 | 31 | 35 |
36 |
37 | 38 |
39 | login 40 | sign up 41 |
42 | 43 | profile 44 |
45 |
46 | 47 | wishlist 48 |
49 |
50 | 51 | bag 52 |
53 |
54 | 55 | 56 |
57 | 58 | 73 |
74 |
75 | 76 | 77 |
78 | 79 | 90 | 91 | 96 | 97 | 102 | 103 |
104 | 105 | 106 |
107 |
108 |
109 |

FILTERS

110 |
111 | 112 |
113 | 114 |
115 | 116 |
117 | 118 | 119 |
120 | 121 |
122 |
123 |

CATEGORIES

124 |
125 | 126 |
127 | 128 |
129 | 130 |
131 | 132 |
133 | 134 |
135 | 136 |
137 | 138 |
139 | 140 | 141 |
142 | 143 |
144 |
145 |

BRAND

146 |
147 | 148 |
149 | 150 |
151 | 152 |
153 | 154 |
155 | 156 |
157 | 158 |
159 | 160 |
161 | 162 | 163 |
164 | 165 |
166 |
167 |

PRICE

168 |
169 | 170 |
171 | 172 |
173 | 174 |
175 | 176 |
177 |
178 | 179 |
180 |
181 |

COLOR

182 |
183 | 184 |
185 | 186 |
187 | 188 |
189 | 190 |
191 | 192 |
193 | 194 |
195 | 196 |
197 |
198 | 199 |
200 |
201 |

DISCOUNT RANGE

202 |
203 | 204 |
205 | 206 |
207 | 208 |
209 | 210 |
211 | 212 |
213 | 214 |
215 | 216 | 217 |
218 | 219 |
220 |
221 | 222 |
223 |
224 | 225 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | -------------------------------------------------------------------------------- /womensdata/women.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Women Products 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 23 | 31 | 35 |
36 |
37 |
38 | login 39 | sign up 40 |
41 | 42 | profile 43 |
44 |
45 | 46 | wishlist 47 |
48 |
49 | 50 | bag 51 |
52 |
53 | 54 |
55 | 56 | 71 |
72 |
73 | 74 |
75 | 76 | 89 | 90 | 95 | 96 | 101 | 102 |
103 | 104 | 105 |
106 |
107 |
108 |

FILTERS

109 |
110 | 111 |
112 | 113 |
114 | 115 |
116 | 117 | 118 |
119 | 120 |
121 |
122 |

CATEGORIES

123 |
124 | 125 |
126 | 127 |
128 | 129 |
130 | 131 |
132 | 133 |
134 | 135 |
136 | 137 |
138 | 139 | 140 |
141 | 142 |
143 |
144 |

BRAND

145 |
146 | 147 |
148 | 149 |
150 | 151 |
152 | 153 |
154 | 155 |
156 | 157 |
158 | 159 |
160 | 161 | 162 |
163 | 164 |
165 |
166 |

PRICE

167 |
168 | 169 |
170 | 171 |
172 | 173 |
174 | 175 |
176 |
177 | 178 |
179 |
180 |

COLOR

181 |
182 | 183 |
184 | 185 |
186 | 187 |
188 | 189 |
190 | 191 |
192 | 193 |
194 | 195 |
196 |
197 | 198 |
199 |
200 |

DISCOUNT RANGE

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 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | -------------------------------------------------------------------------------- /Home Living Products/home_furnishing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Home Decor - Buy Home Furnishing & Accessories Online - Myntra 9 | 10 | Home and Living - Buy Interior Decoration Products and Accessories Online in India 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 26 | 34 | 38 |
39 |
40 | 41 |
42 | login 43 | sign up 44 |
45 | 46 | 47 | profile 48 |
49 |
50 | 51 | wishlist 52 |
53 |
54 | 55 | bag 56 |
57 |
58 | 59 | 60 |
61 | 62 | 77 |
78 | 79 |
80 | 81 |
82 | 83 | 98 | 99 | 104 | 105 | 110 | 111 |
112 | 113 |
114 |
115 |
116 |

FILTERS

117 |
118 | 119 |
120 | 121 |
122 | 123 |
124 | 125 | 126 |
127 | 128 |
129 |
130 |

CATEGORIES

131 |
132 | 133 |
134 | 135 |
136 | 137 |
138 | 139 |
140 | 141 |
142 | 143 |
144 | 145 |
146 | 147 | 148 |
149 | 150 |
151 |
152 |

BRAND

153 |
154 | 155 |
156 | 157 |
158 | 159 |
160 | 161 |
162 | 163 |
164 | 165 |
166 | 167 |
168 | 169 | 170 |
171 | 172 |
173 |
174 |

PRICE

175 |
176 | 177 |
178 | 179 |
180 | 181 |
182 | 183 |
184 |
185 | 186 |
187 |
188 |

COLOR

189 |
190 | 191 |
192 | 193 |
194 | 195 |
196 | 197 |
198 | 199 |
200 | 201 |
202 | 203 |
204 |
205 | 206 |
207 |
208 |

DISCOUNT RANGE

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 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | -------------------------------------------------------------------------------- /Homepages/menHomePage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Men Shopping Online - Shop for Mens Clothing & Accessories in India | Myntra 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 20 | 28 | 32 |
33 |
34 | 35 |
36 | login 37 | sign up 38 |
39 | 40 | 41 | profile 42 |
43 |
44 | 45 | wishlist 46 |
47 |
48 | 49 | bag 50 |
51 |
52 | 53 | 54 |
55 | 56 | 71 |
72 |
73 | 74 | 75 | 76 |
77 |
78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 |
88 | 89 | 90 | 96 |
97 | 98 | 99 | 100 |

biggest deals on top brands

101 |
102 |
brand1
103 |
brand2
104 |
brand3
105 |
brand4
106 |
brand5
107 |
brand6
108 |
brand7
109 |
brand8
110 |
111 | 112 | 113 | 114 |

categories to bag

115 |
116 | 117 | 118 | 119 |

explore top brands

120 |
121 | 122 | 123 | 124 |

myntra luxe

125 |
126 |
luxe1
127 |
luxe2
128 |
luxe3
129 |
luxe4
130 |
luxe5
131 |
luxe6
132 |
133 | 134 | 135 | 136 |

trending in indian wear

137 |
138 |
category1
139 |
category2
140 |
category3
141 |
category4
142 |
category5
143 |
144 | 145 | 146 | 147 |

trending in sports wear

148 |
149 |
category1
150 |
category2
151 |
category3
152 |
category4
153 |
category5
154 |
155 | 156 | 157 | 158 |

trending in footwear

159 |
160 |
category1
161 |
category2
162 |
category3
163 |
category4
164 |
category5
165 |
166 | 167 | 168 | 169 |

trending in accessories

170 |
171 |
category1
172 |
category2
173 |
category3
174 |
category4
175 |
category5
176 |
177 | 178 | 179 | 180 |
181 |
182 |
183 |
184 |

online shopping

185 |

men

186 |

women

187 |

home & living

188 |

beauty

189 |

gift cards

190 |

myntra insiderNew

191 |
192 |
193 |

useful links

194 |

men

195 |

faq

196 |

t&c

197 |

terms of use

198 |

track order

199 |

shipping

200 |

cancellation

201 |

returns

202 |

whitehat

203 |

blog

204 |

careers

205 |

privacy policy

206 |

site map

207 |

corporate information

208 |
209 |
210 |

experience myntra app on mobile

211 | android 212 | ios 213 |

keep in touch

214 |
215 | 216 | 217 | 218 | 219 |
220 |
221 |
222 | 232 |
233 |
234 |

popular searches

235 |
236 |
237 |
238 | sherwanitrack pantsblazzerssweaterjeanssuittrousershalwarbraceletssherwanicargoshirtsherwanishelwarBraceletssherwaniblazzerssherwanibraceletsringsblazzerssherwanisherwanisherwaniblazzersblazzersblazzersshelwarshalwarjeans 239 |
240 |
241 |

In case of any concern contact us

242 |

© 2022 www.myntra.com. All rights reserved.

243 |
244 |
245 |
246 |

men's shopping at myntra: a superior experience

247 |

Myntra is one of the best sites when it comes to online shopping for men. The finest of material, superior design and unbeatable style go into the making of our men’s shopping collection. Our range of online shopping men’s wear, accessories, footwear and personal care products are second to none. Compared with other men’s shopping sites, Myntra brings you the best price products which won’t hurt your pocket. With seasonal discounts on trendy casual wear, suits, blazers, sneakers and more, online shopping for men at Myntra just gets even more irresistible! 248 |

249 |
250 |
251 |

online shopping for men: options unlimited

252 |

At Myntra, our online shopping fashion for men collection features plenty of options to create multiple outfits. At our men’s online shop we have brought together an exhaustive range of products from the best men’s brands. Here is a list of must-haves from the wide variety of awesome products at Myntra:

253 |
254 |
    255 |
  1. Opt for a charming yet laid-back look with cool T-shirts and casual shirts worn with stylish jeans, casual trousers or shorts. Stay sharp and sophisticated with our smart options in formal shirts and trousers. Look dapper when meeting your clients in our smooth suits. Put on trendy blazers for formal occasions. On your online men’s clothes’ shopping journey, make sure you include kurtas, jackets and sherwanis from our festive wear collection. Stay warm and comfortable in sweaters and sweatshirts. Get fit and ready for adventure, with our sports and active wear collection.
  2. 256 |
  3. Once you are done with your online men’s clothes’ shopping, make sure you pick up the right accessories to complement your look. Whether you are travelling to work or outside the city our wide variety of bags, backpacks and luggage collection will ensure you are well-packed. Our beautiful watches and smart watches work well to enhance your overall style quotient. Reach out for our sunglasses during the summers – let your eyes stay protected while you opt for maximum swag. 257 |
  4. 258 |
  5. Bring impeccable style to your shoe closet with our incredible collection of footwear for men. Look classy during formal and semi-formal occasions with derbies, loafers and oxfords. Stay hip and happening in parties with boat shoes, monks and brogues from our casual men’s footwear range. Lead an active lifestyle with sneakers and running shoes from our sports footwear selection. Pick up sandals, floaters and flip-flops for a trip to the beach. We also host socks in our men’s online shopping collection. That’s basically everything under one roof!
  6. 259 |
260 |
261 |

Make sure you check out fun printed men’s T-shirts featuring your favourite characters from DC Comics and Marvel studios. Relive the magic of your favourite superhero from Justice League. Fly high with Superman, battle the bad guys with Batman, or get trendy in lightning-speed with a Flash T-shirt. Grab our cool Marvel Avengers T-shirts. Stay powered up with the Iron Man, or walk with the warriors in a Thor T-shirt.

262 |

Our online shopping fashion for mens collection includes even more amazing merchandise such as innerwear, sleepwear, track pants, personal care, wallets, belts and other fashion accessories.

263 |
264 |
265 |

men's shopping made easy at myntra

266 |

Myntra is the most convenient men’s online store, what with our simplified shopping and payment procedures. With just a few clicks of the mouse or taps on your smartphone, you can buy your favorites from the best men’s brands right away.

267 |
268 |
269 | 270 | 271 | 272 | 273 | 274 | 275 | -------------------------------------------------------------------------------- /Homepages/womenHomePage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Online Shopping for Women - Shop For Women Clothes, Shoes, Bags & More 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 20 | 28 | 32 |
33 |
34 | 35 |
36 | login 37 | sign up 38 |
39 | 40 | 41 | profile 42 |
43 |
44 | 45 | wishlist 46 |
47 |
48 | 49 | bag 50 |
51 |
52 | 53 | 54 |
55 | 56 | 71 |
72 | 73 |
74 | 75 | 76 | 77 |
78 |
79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 |
88 | 89 | 90 | 96 |
97 | 98 | 99 | 100 |

biggest deals on top brands

101 |
102 |
brand1
103 |
brand2
104 |
brand3
105 |
brand4
106 |
brand5
107 |
brand6
108 |
brand7
109 |
brand8
110 |
brand9
111 |
brand10
112 |
113 | 114 | 115 | 116 |

categories to bag

117 |
118 | 119 | 120 | 121 |

explore top brands

122 |
123 | 124 | 125 |

trending in western wear

126 |
127 |
category1
128 |
category2
129 |
category3
130 |
category4
131 |
category5
132 |
133 | 134 | 135 |

trending in indian wear

136 |
137 |
category1
138 |
category2
139 |
category3
140 |
category4
141 |
category5
142 |
143 | 144 | 145 | 146 |

trending in sports wear

147 |
148 |
category1
149 |
category2
150 |
category3
151 |
category4
152 |
category5
153 |
154 | 155 | 156 | 157 |

trending in footwear

158 |
159 |
category1
160 |
category2
161 |
category3
162 |
category4
163 |
category5
164 |
165 | 166 | 167 | 168 |

trending in accessories

169 |
170 |
category1
171 |
category2
172 |
category3
173 |
category4
174 |
category5
175 |
176 | 177 | 178 | 179 |
180 |
181 |
182 |
183 |

online shopping

184 |

men

185 |

women

186 |

home & living

187 |

beauty

188 |

gift cards

189 |

myntra insiderNew

190 |
191 |
192 |

useful links

193 |

men

194 |

faq

195 |

t&c

196 |

terms of use

197 |

track order

198 |

shipping

199 |

cancellation

200 |

returns

201 |

whitehat

202 |

blog

203 |

careers

204 |

privacy policy

205 |

site map

206 |

corporate information

207 |
208 |
209 |

experience myntra app on mobile

210 | android 211 | ios 212 |

keep in touch

213 |
214 | 215 | 216 | 217 | 218 |
219 |
220 |
221 | 231 |
232 |
233 |

popular searches

234 |
235 |
236 |
237 | sherwanitrack pantsblazzerssweaterjeanssuittrousershalwarbraceletssherwanicargoshirtsherwanishelwarBraceletssherwaniblazzerssherwanibraceletsringsblazzerssherwanisherwanisherwaniblazzersblazzersblazzersshelwarshalwarjeans 238 |
239 |
240 |

In case of any concern contact us

241 |

© 2022 www.myntra.com. All rights reserved.

242 |
243 |
244 |
245 |

online shopping for women: myntra all the way

246 |

Myntra is one of the best sites when it comes to online shopping for men. The finest of material, superior design and unbeatable style go into the making of our men’s shopping collection. Our range of online shopping men’s wear, accessories, footwear and personal care products are second to none. Compared with other men’s shopping sites, Myntra brings you the best price products which won’t hurt your pocket. With seasonal discounts on trendy casual wear, suits, blazers, sneakers and more, online shopping for men at Myntra just gets even more irresistible! 247 |

248 |
249 |
250 |

women’s online shopping: clothes, accessories, footwear, and more

251 |

At Myntra, our online shopping fashion for men collection features plenty of options to create multiple outfits. At our men’s online shop we have brought together an exhaustive range of products from the best men’s brands. Here is a list of must-haves from the wide variety of awesome products at Myntra:

252 |
253 |
    254 |
  1. Opt for a charming yet laid-back look with cool T-shirts and casual shirts worn with stylish jeans, casual trousers or shorts. Stay sharp and sophisticated with our smart options in formal shirts and trousers. Look dapper when meeting your clients in our smooth suits. Put on trendy blazers for formal occasions. On your online men’s clothes’ shopping journey, make sure you include kurtas, jackets and sherwanis from our festive wear collection. Stay warm and comfortable in sweaters and sweatshirts. Get fit and ready for adventure, with our sports and active wear collection.
  2. 255 |
  3. Once you are done with your online men’s clothes’ shopping, make sure you pick up the right accessories to complement your look. Whether you are travelling to work or outside the city our wide variety of bags, backpacks and luggage collection will ensure you are well-packed. Our beautiful watches and smart watches work well to enhance your overall style quotient. Reach out for our sunglasses during the summers – let your eyes stay protected while you opt for maximum swag. 256 |
  4. 257 |
  5. Bring impeccable style to your shoe closet with our incredible collection of footwear for men. Look classy during formal and semi-formal occasions with derbies, loafers and oxfords. Stay hip and happening in parties with boat shoes, monks and brogues from our casual men’s footwear range. Lead an active lifestyle with sneakers and running shoes from our sports footwear selection. Pick up sandals, floaters and flip-flops for a trip to the beach. We also host socks in our men’s online shopping collection. That’s basically everything under one roof!
  6. 258 |
259 |
260 |

Make sure you check out fun printed men’s T-shirts featuring your favourite characters from DC Comics and Marvel studios. Relive the magic of your favourite superhero from Justice League. Fly high with Superman, battle the bad guys with Batman, or get trendy in lightning-speed with a Flash T-shirt. Grab our cool Marvel Avengers T-shirts. Stay powered up with the Iron Man, or walk with the warriors in a Thor T-shirt.

261 |

Our online shopping fashion for mens collection includes even more amazing merchandise such as innerwear, sleepwear, track pants, personal care, wallets, belts and other fashion accessories.

262 |
263 |
264 |

online shopping for women made easy

265 |

Myntra is the most convenient men’s online store, what with our simplified shopping and payment procedures. With just a few clicks of the mouse or taps on your smartphone, you can buy your favorites from the best men’s brands right away.

266 |
267 |
268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | --------------------------------------------------------------------------------