A simple and interactive To-Do List application built using HTML, CSS, and JavaScript. This project allows users to add and delete tasks dynamically, helping manage daily activities efficiently.
- β Add new tasks
- β Delete tasks instantly
- β‘ Real-time DOM updates
- π§ Beginner-friendly JavaScript logic
- π» Lightweight and fast
- HTML β Structure of the application
- JavaScript (DOM Manipulation) β Functionality and interactivity
π To-Do-List
βββ index.html
- Enter a task in the input field
- Click the Add button
- Task appears in the list
- Click Delete to remove the task
-
add()- Creates a new
<li>element - Adds user input text
- Appends it to the list
- Creates a new
-
del(event)- Removes the selected task using
event.target.parentElement.remove()
- Removes the selected task using
- Download or clone the repository
- Open the
index.htmlfile in any browser
A basic UI with:
- Input field
- Add button
- Task list with delete option
- Add task editing feature βοΈ
- Save tasks using Local Storage πΎ
- Add styling with CSS π¨
- Mark tasks as completed βοΈ