This project creates a basic to-do list application using HTML, CSS, and JavaScript. Users can add new tasks, mark them as completed, and remove them from the list.
- Clone or Download the Repository: You can clone this repository using Git or download the zip file containing the HTML, CSS, and JavaScript files.
- Open the Files: Open the
index.htmlfile in your web browser to see the application running.
- Add Tasks: Enter a new task in the input field and click the "Add Task" button.
- Mark Tasks Complete: Click the checkbox next to a task to mark it as completed. (Optional visual styling can be added for completed tasks)
- Remove Tasks: Click the close button (X) next to a task to remove it from the list.
- index.html: This file contains the main HTML structure of the application, including elements for the input field, button, and task list.
- style.css: This file defines the styles for the application's visual appearance (optional, but recommended for a more polished look).
- script.js: This file contains the JavaScript code responsible for adding new tasks, handling checkboxes, and removing tasks.