You can run a local Python server on your machine through the CLI. Run the following command depending on the version of Python installed:
Python 2
python -m SimpleHTTPServer 8000
Python 3
python -m http.server 8000
Now, simply connect to the server from your browser: http://localhost:8000