how to import css in flask code example
Example 1: flask link stylesheet
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
Example 2: how to add css in flask app
<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles/mainpage.css') }}">