1) Multiple Notes Support
Create and manage multiple notes in a sidebar.
HexaNotes is a minimal, web application built using HTML, CSS, and JavaScript.
It runs entirely in the browser with no backend and uses localStorage for persistence.
Create and manage multiple notes in a sidebar.
Instantly edit title and content with real-time saving.
Uses localStorage to save notes even after refresh.
Each note is stored as an object:
{
id: Date.now(),
title: "Note title",
content: "Note content"
}
All notes are stored in browser storage using:
localStorage
This allows data to persist without any backend.
To run HexaNotes locally:
git clone https://github.com/Hexa-Programmer/HexaNotes.git
cd HexaNotes
open index.html
This is a personal learning project and will continue to evolve over time.