Project - 5
Project 5: Notes App
Build a simple notes application where users can create, view, edit, and delete notes. Notes should be saved using localStorage.
👀 Show Example Solution
<textarea id="noteInput" placeholder="Write a new note..."></textarea> <button onclick="saveNote()">Save Note</button> <div id="notesList"></div> <script> // Notes with title + content, saved in localStorage </script>
