This is a simple online store project.
- Product listing
- Shopping cart
- Add to cart system
- Remove items from cart
- Total price calculation
- Single page
index.htmlstore
The shopping cart is implemented entirely in index.html using JavaScript.
- Users can add products to the cart by clicking "Add to Cart".
- The cart stores items in memory (no database required).
- Users can remove items from the cart.
- The total price is automatically calculated and displayed.
- All cart actions are handled dynamically on the page.
- Go to the product list.
- Click "Add to Cart" for a product.
- Open the cart to see selected items.
- Remove items if needed.
- Total updates automatically.
index.html→ main store + cart logicREADME.md→ project documentation- Optional:
cart.cssfor styling,product.jsonfor product data
ezy2be