Project - 2

Project 2: Advanced To-Do List

Build a better to-do list with the ability to add, delete, mark as complete, and save tasks using localStorage so they persist after refresh.

✦ HTML + CSS + JS Editor
▶ Live Output

👀 Show Example Solution
<input type="text" id="taskInput" placeholder="New task...">
<button onclick="addTask()">Add</button>
<ul id="todoList"></ul>

<script>
  // Full To-Do logic with localStorage goes here
</script>