FrontEnd-Development

E-commerce Front-End Application

πŸ“Œ Overview

This project is a front-end e-commerce web application developed using HTML, CSS, and JavaScript. The system provides users with functionality to browse products, manage accounts (Login, Sign-Up, Forget Password), and submit product reviews.


πŸš€ Features

πŸ”Έ Home Page

πŸ”Έ Login Page

πŸ”Έ Sign-Up Page

πŸ”Έ Forget Password

πŸ”Έ Review Page

πŸ”Έ Shopping Cart


πŸ’Ύ Data Structure

let login_Users = [
  {
    username: "user1",
    pass: "pass123",
    age: 25,
    gender: "male",
    phone: "123-456-7890"
  },
  {
    username: "user2",
    pass: "abc456",
    age: 30,
    gender: "female",
    phone: "987-654-3210"
  }
];

🎨 CSS Requirements

The project must include the following CSS properties:


πŸ“ File Structure (Suggested)

/e-commerce-frontend
β”‚
β”œβ”€β”€ index.html               # Main page (with all forms)
β”œβ”€β”€ style.css                # Styling file
β”œβ”€β”€ script.js                # JavaScript logic
└── /img                     # Images, icons, etc.

☁️ Deployment

Upload the entire project to your GitHub repository as github pages.


βœ… Author & Acknowledgment

Developed as part of a front-end development task focusing on building an interactive, user-friendly e-commerce interface using core web technologies.