├── Paymentpage ├── otp.html └── payment.html ├── README.md ├── cart.html ├── index.html ├── mens.html ├── mens.js ├── style.css ├── womens.html └── womens.js /Paymentpage/otp.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Paymentpage/payment.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush-kr05/E-Commerce_Website/HEAD/README.md -------------------------------------------------------------------------------- /cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush-kr05/E-Commerce_Website/HEAD/cart.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush-kr05/E-Commerce_Website/HEAD/index.html -------------------------------------------------------------------------------- /mens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush-kr05/E-Commerce_Website/HEAD/mens.html -------------------------------------------------------------------------------- /mens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush-kr05/E-Commerce_Website/HEAD/mens.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush-kr05/E-Commerce_Website/HEAD/style.css -------------------------------------------------------------------------------- /womens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush-kr05/E-Commerce_Website/HEAD/womens.html -------------------------------------------------------------------------------- /womens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush-kr05/E-Commerce_Website/HEAD/womens.js --------------------------------------------------------------------------------