я все делаю чтобы css присоединить к flask 2.1 но ничего не получается код:html:
<!DOCTYPE html>
<html>
<head>
<title>Helo world</title>
<link href="/static/style.css" rel="stylesheet"/>
</head>
<body>
<h1>Haa{{name}}aaa</h1>
<p>JJJ{{name}}KKK</p>
</body>
</html>
CSS:
</CSS:
.h1{
left: 50px;
color: green;
}
.p{
left: 100px;
}
Flask:
from flask import Flask, render_template, url_for
app = Flask(__name__, template_folder='template', static_folder='static')
@app.route('/')
def hello_name():
return render_template('main.html')
if __name__=='__main__':
app.run(debug=True)