The easiest way to run locally a local server. There are plenty of options. One uses Python’s built in webserver.

cd to the wished direcory and run (from command line):

# Python 2.x
python -m SimpleHTTPServer 8000

# Python 3.x
python -m http.server

then browse to localhost:8000 in your browser