Answers for "link css folder to html flask"

CSS
0

linking custom CSS in flask

{% block styles %}
{{super()}}
<link rel="stylesheet"
      href="{{url_for('.static', filename='mystyle.css')}}">
{% endblock %}
Posted by: Guest on June-05-2021

Browse Popular Code Answers by Language