I have an HTML file bundled with js and CSS.
There is a form table with input fields so when user enters the data it should be saved permanently . i cannot use local storage or any web based or system storage because the html file needs to be send within PC so that different user can enter the remaining data .
also cannot use any db or store it in server because the client is using system that doesn't have internet connection .
i tried setting the data to html element but on refresh it's lost. i need data to persist even after refresh.
so is there any method to store data in html file itself
is it possible to do this?
if any other methods plz recommend