How to add css files to your Flask Application? How to add css files to your Flask Application? flask flask

How to add css files to your Flask Application?


Try:

{% block styles %}{{super()}}    <link rel="stylesheet"  type="text/css" href="{{url_for('.static', filename='style.css')}}">{% endblock %}