diff --git a/assets/expense-tracker-preview.png b/assets/expense-tracker-preview.png
new file mode 100644
index 00000000..b158d912
Binary files /dev/null and b/assets/expense-tracker-preview.png differ
diff --git a/en/beginner-projects/expense-tracker.md b/en/beginner-projects/expense-tracker.md
new file mode 100644
index 00000000..4a7027e6
--- /dev/null
+++ b/en/beginner-projects/expense-tracker.md
@@ -0,0 +1,43 @@
+# 💰 Expense Tracker
+
+
+
+## Description
+
+A simple **Expense Tracker** built using **HTML, CSS, and JavaScript (ES Modules)** that allows users to manage their daily income and expenses. Users can **add, edit, and delete** transactions, view their **balance summary**, and store data locally using **localStorage** — all without a backend.
+
+## Features
+
+- Add new transactions (income or expense)
+- Edit existing transactions
+- Delete unwanted transactions
+- View total balance, income, and expense summaries
+- Persistent data storage using `localStorage`
+- Clean and responsive UI design
+
+## Concepts Practiced
+
+- DOM manipulation
+- Working with arrays and objects
+- Event handling and form submission
+- Data persistence using `localStorage`
+- Conditional rendering and dynamic UI updates
+- Modular JavaScript (`index.mjs`)
+
+## Bonus Challenge
+
+- Add a **dark mode toggle** in the navbar 🌙
+- Show a **monthly expense chart** using a JS chart library
+- Add a **filter/search** option for transactions
+- Allow users to **export data** as CSV
+
+## Live Demo
+
+
+
+
diff --git a/examples/Expense-Tracker/README.md b/examples/Expense-Tracker/README.md
new file mode 100644
index 00000000..0117b920
--- /dev/null
+++ b/examples/Expense-Tracker/README.md
@@ -0,0 +1,40 @@
+# 💰 Expense Tracker
+
+A simple and interactive **Expense Tracker** built using **HTML, CSS, and modern JavaScript (ES Modules)**.
+It helps users manage their daily income and expenses, view summaries, and store data locally — all without a backend.
+
+## Features
+
+- ➕ **Add new transactions** — income or expense.
+- ✏️ **Edit transactions** — update existing entries easily.
+- ❌ **Delete transactions** you no longer need.
+- 💵 **Live balance summary** showing total, income, and expenses.
+- 💾 **Data persistence** using `localStorage` (no backend required).
+- 📱 **Clean and responsive UI** — works on both desktop and mobile.
+
+## Files
+
+- `index.html` — main structure and layout of the app.
+- `styles.css` — styling, layout, and responsive design.
+- `index.mjs` — handles core functionality like adding, editing, deleting, and storing transactions.
+
+## How to Use
+
+1. Open `index.html` in your browser (Chrome, Edge, or Firefox recommended).
+2. Enter a **description** and **amount**.
+ - Use positive numbers for income (e.g., `+5000`).
+ - Use negative numbers for expenses (e.g., `-1200`).
+3. Click **Add Transaction** to save it.
+4. View your total **balance**, **income**, and **expense** at a glance.
+5. Edit or delete transactions anytime — all changes are saved automatically.
+
+## Notes
+
+- Data is stored locally in the browser using **localStorage**.
+- The app automatically loads your saved data on refresh.
+- Built entirely with **vanilla JS, HTML, and CSS** — no external libraries used.
+- Great for beginners learning **DOM manipulation, events, and localStorage**.
+
+---
+
+✨ **Easily track where your money goes with the Expense Tracker!**
diff --git a/examples/Expense-Tracker/index.html b/examples/Expense-Tracker/index.html
new file mode 100644
index 00000000..76dfd866
--- /dev/null
+++ b/examples/Expense-Tracker/index.html
@@ -0,0 +1,47 @@
+
+
+
+
+
+ Expense Tracker
+
+
+
+