I'm trying to make a website where a user can look through an image gallery of books, each accompanied by the book's name and other properties, such as reading level, number of pages, etc.
I'd be using my own images of the books and entering the data for them myself, but I'm not sure how to store these book objects. I obviously don't want to manually make a <div>
for each and enter all the data, but rather use JS to access the list of all the books and their data and output them.
I'm not sure what would be the appropriate method of storing these books. Would I make a SQL database, use localStorage, or something else entirely?