This project is a front-end clone of the Amazon e-commerce website. It is designed for educational purposes and demonstrates various web development concepts, including HTML, CSS, and JavaScript. The project simulates core Amazon features such as product listings, shopping cart, checkout, and order tracking.
Amazon_ecom/
├── 3-links.md
├── README.md
├── Amazon_Website/
│ ├── scripts/ # JavaScript files for different features
│ ├── src/ # HTML pages, backend data, images, and styles
│ │ ├── backend/ # JSON data for products
│ │ ├── data/ # JS modules for cart, products, orders, etc.
│ │ ├── images/ # Images and icons used in the site
│ │ ├── scripts/ # Main JS scripts for site functionality
│ │ ├── styles/ # CSS files for styling
│ │ ├── tests/ # Test files and test data
│ │ ├── amazon.html # Main Amazon homepage
│ │ ├── checkout.html # Checkout page
│ │ ├── orders.html # Orders page
│ │ └── tracking.html # Order tracking page
│ └── ...
└── styles/ # Additional CSS files
- Product listing and details
- Shopping cart functionality
- Checkout process
- Order history and tracking
- Responsive design
- Clone or download this repository.
- Open
Amazon_Website/src/amazon.htmlin your web browser to view the homepage. - Navigate to other pages (checkout, orders, tracking) via the site navigation.
- JavaScript files are located in
Amazon_Website/scripts/andAmazon_Website/src/scripts/. - Product and order data are in
Amazon_Website/src/backend/andAmazon_Website/src/data/.
All images and icons used in the project are located in Amazon_Website/src/images/.
This project is for educational purposes only and is not affiliated with Amazon.