This is a simple To-Do List application built using HTML, CSS, and JavaScript. The app allows users to add, delete, and mark tasks as completed. It also includes a "Clear" button to remove all tasks at once.
- Add Task: Enter a task in the input field and click the "Add" button to include it in the list.
- Delete Task: Each task comes with a delete icon to remove it from the list.
- Mark as Completed: Clicking on a task strikes it through, indicating that it is completed.
- Clear All Tasks: The "Clear" button allows you to remove all tasks from the list with a single click.
Here's a quick preview of the app:
- HTML for structuring the layout.
- CSS for styling and responsiveness.
- JavaScript for dynamic functionality (task addition, deletion, and completion marking).
- Clone the repository:
git clone https://github.com/DorukhanBekdur/To-Do-List-App
- Navigate to the project directory:
cd To-Do-List-App
- Open the 'index.html' file in your browser:
Open index.html in your favorite browser
- Persistent Storage: Add local storage to save tasks even after refreshing the page.
- Task Categories: Categorize tasks into different lists.
- Edit Task: Allow editing of tasks after they've been added.