A simple To-Do List web application built using HTML, CSS, and JavaScript. This application allows users to create tasks, mark them as complete, delete tasks, and persist the tasks using the browser's local storage.
- Create Tasks: Add new tasks to your to-do list.
- Mark Tasks as Complete: Mark tasks as completed by checking the checkbox next to them. Completed tasks are displayed with a strikethrough.
- Delete Tasks: Remove tasks from the list with a delete icon next to each task.
- Persistence: Tasks are saved in local storage, so they persist even after a page refresh.
- HTML: Structure of the web page.
- CSS: Styling and layout of the application.
- JavaScript: Functionality of adding, deleting, and updating tasks. Handles interaction with local storage.