Serving files with Python's HTTP server
Python tip:
When you need to just serve your static files inside a folder you can do that with Python's HTTP server:
$ cat index.html <html> <h1>Website Prototype</h1> <h2>List of Users:</h2> <ul> <li>Patrick</li> <li>Jan</li> </ul> </html> $ python3 -m http.server Serving HTTP on :: port 8000 (http://[::]:8000/) ...