1from flask import Flask, render_template
2
3app = Flask(__name__)
4@app.route("/")
5def index():
6 return render_template('index.html') # You have to save the html files
7 # inside of a 'templates' folder.
8
9app.run(debug=True)