This is a simple To-Do List App built using HTML, CSS, and JavaScript.
It allows users to add and delete tasks dynamically — no backend required!
- ✏️ Add new tasks easily
- 🗑️ Delete tasks with one click
- 🎨 Minimal and clean interface
- ⚡ Built using pure JavaScript (no frameworks)
- HTML – Structure of the app
- CSS – Basic styling
- JavaScript (DOM) – Functionality to add and delete tasks
- Enter your task in the input field
- Click Add Task
- Your task will appear in the list with a delete button
- Click delete to remove the task
todo-app-js-mini-project/ │ ├── index.html # main HTML file ├── JS-MiniProject.css # CSS styling file ├── JS-MiniProject.js # JavaScript logic file └── README.md # project documentation
- DOM Manipulation (
createElement,appendChild,addEventListener) - Event Delegation
- Element Removal (
remove()method)
Digvej
🎓 B.Tech CSE | JavaScript Enthusiast | Learning Frontend
- Clone the repository
git clone https://github.com/digvej/todo-app-js-mini-project.git

