python
from flask import Flask, render_template app = Flask(__name__) @app.route("/profile/") def index(name): return render_template("python.html", name=name) if __name__ == "__main__": app.run()
html
<!doctype html>
<h1>Hey there {{ name }}</h1>
<title>welcome to </title>
<link rel="stylesheet" type="text/css" href={{url_for('static',filename='new.css') }}">
css
h1 { color: deepskyblue; }