is it possible to build a local website that can access a .db file and dynamically update pages without a webserver?

I have a .db file made using sqlite that contains information about stories that were scraped from the internet (title, author, summary, file path, .etc).

I plan for all the story files to be in one folder and then use the database to show them on html webpages and what not.

Like a page with a list of authors, and when you click an authors name, it would go to a page with a list of stories, and it would access the database to get that information.

It would only be on something that’s run on my computer, not connected to the internet or anything so I don’t want a server. The reason why i would like it ot be serverless because i want my friends to use the program without having to worry about trying to set up a server or anything.

i know php can interact with sql but it seems to need a sever, and i know there’s some java script libraies that can work with sql, but i’m not sure if js can access the files or create the necessary pages

Honestly am just looking where to start. I just want to be able to click on a link and see what stories were saved.