Coding & IT Book

Learn, Code, Improve & Repeat.

Get Started for FREE!

Learning to code is not difficult with williambenz.comarrow-up-right

All you need is just some spare time. Click below to get started!

rocket-launchGet started

python
from flask import Flask, render_template, request

app = Flask(__name__)

@app.route("/", methods=['GET'])
def index():
    return render_template("index.html")

if __name__ == "__main__":
    app.run(host="127.0.0.1", port=80, debug=True)

Last updated