Last updated 4 years ago
Was this helpful?
<!DOCTYPE html> <html> <head> <title>hello, world!</title> </head> <body> Welcome to Activity 4! </body> </html>
from flask import Flask, render_template app = Flask(__name__) @app.route("/") def index(): return render_template('index.html')