Tech Tip: Start a simple web server
Python ships with a handy little web server that will serve up the files in the folder from which it is run. This is really handy for development.
Run the following command to start the server:
python -m SimpleHTTPServer
Or if you are using Python 3, run:
python -m http.server