External Css File Doesn't Work In Flask Framework
I'm trying to use an external css file in my html file. At first I used bootstrap framework and it works well. However, when I tried to customize the web page by adding a customize
Solution 1:
<link href="{{ url_for('static', filename='custom.css') }}" rel="stylesheet"/>
Post a Comment for "External Css File Doesn't Work In Flask Framework"