A simple note-taking app that lets you jot down quick notes and keeps them saved in your browser between visits.
- Add notes via a textarea and Submit button
- Notes are saved to
localStorage, so they persist even after closing or refreshing the browser - Delete individual notes with a dedicated Delete button
- Notes automatically re-render whenever the list changes
- HTML5
- CSS3
- JavaScript (Vanilla) with the Web Storage API (
localStorage)
- Clone or download this folder.
- Open
index.htmlin your browser. - Type a note into the text box and click Submit to save it. Click Delete on any note to remove it.
Notes_App/
├── index.html
├── style.css
└── script.js