How to output an html file in flask

Solution
from Flask import render_template

@app.route('/')
def index():
   return render_template('index.html')