Answers for "how to include a css linkfile in 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

Code answers related to "how to include a css linkfile in flask"

Browse Popular Code Answers by Language