diff --git a/Domains/Frontend/MiniProjects/TaskTracker/README.md b/Domains/Frontend/MiniProjects/TaskTracker/README.md
new file mode 100644
index 00000000..16796473
--- /dev/null
+++ b/Domains/Frontend/MiniProjects/TaskTracker/README.md
@@ -0,0 +1,67 @@
+# β Task Tracker with Deadlines
+
+**Contributor:** Tanmay-Kad
+**Domain:** Frontend Development
+**Difficulty:** Beginner
+**Tech Stack:** HTML, CSS, JavaScript, Tailwind CSS
+
+---
+
+## π Description
+
+**Task Tracker with Deadlines** is a smart and interactive web app designed to help users manage tasks efficiently.
+It allows you to **add tasks with specific deadlines**, automatically highlights **overdue tasks**, and displays your overall **progress visually**.
+All your tasks are stored securely in the **browserβs LocalStorage**, ensuring that your data stays even after page reloads.
+
+This project is perfect for beginners who want to learn **JavaScript DOM manipulation**, **state management**, and **responsive UI design** with Tailwind CSS.
+
+---
+
+## π― Features
+
+- β Add new tasks with deadlines
+- β Edit existing tasks easily
+- β Delete unwanted tasks
+- β Mark tasks as complete/incomplete
+- β Sort tasks automatically by upcoming deadlines
+- β Highlight overdue tasks in red
+- β View completion progress with a live progress bar
+- β Data saved automatically using LocalStorage
+- β Fully responsive and mobile-friendly UI
+
+---
+## π οΈ Tech Stack
+
+- **HTML5** - Semantic markup
+- **CSS3** - Modern styling with Flexbox
+- **JavaScript (ES6+)** - DOM manipulation and logic
+- **LocalStorage API** - Data persistence
+
+---
+
+## π How to Run
+
+### Method 1: Open Directly
+1. Download or clone this repository
+2. Open `index.html` in your browser
+3. Start adding and managing your tasks!
+
+### Method 2: Run via Live Server (Recommended)
+1. Open the project folder in **VS Code**
+2. Install the **Live Server** extension (if not already installed)
+3. Right-click `index.html` β Click **"Open with Live Server"**
+4. App will open in your browser (usually at `http://localhost:5500`)
+
+---
+
+## π Project Structure
+
+```
+TaskTracker/
+βββ index.html # Main HTML structure
+βββ style.css # Custom CSS styling
+βββ script.js # JavaScript logic and LocalStorage handling
+βββ README.md # Project documentation
+```
+
+---
\ No newline at end of file
diff --git a/Domains/Frontend/MiniProjects/TaskTracker/index.html b/Domains/Frontend/MiniProjects/TaskTracker/index.html
new file mode 100644
index 00000000..6fca2865
--- /dev/null
+++ b/Domains/Frontend/MiniProjects/TaskTracker/index.html
@@ -0,0 +1,57 @@
+
+
+