├── README.md └── todo_list_project └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # To-Do List Web App 📝 2 | 3 | A simple To-Do List application built using **HTML, CSS, and JavaScript**. This app allows users to add, remove, and manage their daily tasks efficiently. 4 | 5 | ## Features 6 | ✅ Add new tasks 7 | ✅ Remove completed tasks 8 | ✅ Simple and clean UI 9 | 10 | ## How to Use 11 | 1. Clone or download this repository. 12 | 2. Open the `index.html` file in your browser. 13 | 3. Enter a task in the input field and click the "Add" button. 14 | 4. Click the ❌ button to remove a task. 15 | 16 | 17 | ## Technologies Used 18 | - HTML 19 | - CSS 20 | - JavaScript 21 | 22 | ## Contributing 23 | Feel free to fork this repository and enhance the project with new features like: 24 | 🔹 Local storage to save tasks 25 | 🔹 Task categories or priority levels 26 | 🔹 Dark mode 27 | -------------------------------------------------------------------------------- /todo_list_project/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | To-Do List 7 | 42 | 43 | 44 |
45 |

To-Do List

46 | 47 | 48 | 49 |
50 | 65 | 66 | --------------------------------------------------------------------------------