📋 To-Do Application A simple and responsive To-Do List web application built with HTML, Bootstrap, and Vanilla JavaScript. It allows users to add, edit, delete, and store tasks using the browser's local storage.
🔗 Live Demo 👉 Click here to view the live site https://ghanshyam2959.github.io/ToDo-App/
🛠️ Tech Stack HTML5
Bootstrap 5
JavaScript (ES6+)
LocalStorage (for data persistence)
🚀 Features
✅ Add new tasks
✅ Edit existing tasks
✅ Delete individual tasks
✅ Clear all tasks at once
✅ Responsive UI with Bootstrap
✅ Stores tasks locally using browser storage
📸 Screenshot
📂 Project Structure
Edit ├── index.html → Main HTML structure ├── index.js → JavaScript logic (add/edit/delete) └── README.md → Project documentation
🧠 How It Works User enters a task in the input box. Clicks Save to add the task. Tasks are saved to the browser's localStorage. Tasks are displayed in a table with Edit and Delete options. You can also remove all tasks using the Remove All button.