Final Project

Starter Code - application.py

from flask import Flask, render_template
app = Flask(__name__)

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

Starter Code Example 1 - index.html

Starter Code Example 2 - index.html

Starter Code Example 3 - index.html

Last updated

Was this helpful?