Answers for "how to add a stylesheet to flask app"

1

how to add a stylesheet to flask app

<link rel="stylesheet" type='text/css" href="{{ url_for('static', filename='main.css') }}">
Make sure that the css is in the 'static' file you should have created
inside the root directory of the project.
Posted by: Guest on October-27-2021

Browse Popular Code Answers by Language