A simple and clean Notes App Frontend built using HTML, CSS, and Vanilla JavaScript. This frontend connects with the backend Notes API to create, view, update, and delete notes.
Perfect lightweight UI for learning how to connect a frontend to a REST API.
Backend repo:
π https://github.com/Jerrwin/Node-Notes-API
- Add new notes
- View all notes
- Update notes
- Delete notes
- Responsive UI
- Clean and minimal interface
- Connects directly to backend API endpoints
- HTML5
- CSS3
- JavaScript (Vanilla JS)
- Fetch API (for calling backend)
project/
βββ index.html β Main UI
βββ style.css β Stylesheet
βββ script.js β API calls & UI logic
βββ README.md
- Clone the repository
https://github.com/Jerrwin/Node-Notes-Frontend.git cd Node-Notes-API - Open the app Simply Open: index.html
- Configure Backend URL
Inside script.js, update your backend API URL:
const API_URL = "https://your-backend-url";
Feel free to open issues or submit pull requests. This project is beginner-friendly and ideal for practicing API integration.