Simple To-Do List App
Medium
2
1
16.1% Acceptance
In this lab, you'll build a simple To-Do List App using HTML, CSS, and JavaScript. The app will consist of an input field to add new tasks, a list to display the tasks, and a button to clear all tasks. The focus of the lab will be on using event listeners, DOM manipulation, and HTML/CSS styling.
To complete the lab, you'll need to understand the following concepts:
- Basic HTML/CSS to create the layout of the app.
- JavaScript event handling (e.g., click event).
- DOM manipulation to dynamically add, edit and remove elements in the list.
- Using local storage to persist the list data across browser sessions (optional).