HTTP Server
You can spin up a quick and simple HTTP server with Python that echoes the directory structures where it was created as a static web page by using the http.server
utility followed by a port number.
$ python3 -m http.server <PORT_NUMBER>