from flask import Flask from flask import render_template from flask import request app = Flask(__name__, template_folder='templates') @app.route("/") def hello(): return render_template('index.html') @app.route("/index.html") def hello1(): return render_template('index.html') @app.route("/aboutus") def aboutus(): return render_template('aboutus.html') @app.route("/contactus") def contactus(): return render_template('contactus.html')
Welcome to Home Page
Welcome to About Us Page
Welcome to Contact Us Page