Simple, lightweight To-Do list web app.
- Add tasks (click "Add" or press Enter).
- Mark tasks complete (toggle strike-through).
- Remove tasks.
- Limits to 5 tasks.
- index.html — app markup.
- styles.css — app styling.
- script.js — app logic: see
createLi,addTask,li_list.
- Open index.html in your browser (or serve via Live Server).
- Type a task in the input and:
- Click a list item to toggle complete.
- Click the × icon to remove a task.
- New list items are created with
createLi. - The app prevents adding more than 5 tasks (uses
li_listlength check).
- Edit styles in styles.css.
- Edit behavior in script.js.