This is a basic to-do list application built using HTML, CSS, and JavaScript.
- Add new tasks
- Mark tasks as completed
- Delete tasks
- Filter tasks (All, Completed, Pending)
- Save tasks to local storage
- Open the
index.html
file in a web browser. - Enter a task in the input field and click the "+" button to add it to the list.
- Click the checkmark button next to a task to mark it as completed.
- Click the trash button next to a task to delete it.
- Use the dropdown menu to filter the list of tasks.
- HTML: The markup language for creating the structure of the web page.
- CSS: The stylesheet language for styling the appearance of the web page.
- JavaScript: The programming language for adding interactivity to the web page.
This application uses local storage to save the list of tasks. This means that the tasks you add will be persisted even after you close the browser window.