Python: Serve an HTML File (opens in new tab)
If you want to serve some HTML with python run python -m http.server 8000 Then navigate to This is not meant for production environments but will get you around CORS restrictions that would come from simply opening a local file in your browser.
Read the original article