I have made an HTML browser database for comic collecting, everything is working fine right now apart from I have added the options for those I have shared it with to tick (own? reprint? favourite?) to the selected comics page. But upon refreshing or leaving the page the ticked options disappear.
What I want is for it to save it locally as it's made only for that purpose and not online. Basically save it locally which will save the ticked user choices and also store them user choices so that in a planned (my collection) tab it will have all the ticked comics you own, have been reprinted, and/or favourite.
I have no knowledge of how to do this at all hence the reason I'm asking for help.
Code I have already in my HTML page:
<form>
<input type="checkbox" id="own" name="own" value="Own?">
<label for="own">Own?</label>
<input type="checkbox" id="reprint" name="reprint" value="Reprint?">
<label for="reprint">Reprint?</label>
<input type="checkbox" id="favorite" name="favorite" value="Favorite">
<label for="favorite">Favorite</label>
</form>