One minute
Python: Serve an HTML File
If you want to serve some HTML with python run
python -m http.server 8000
Then navigate to http://localhost:8000.
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 other posts