Can anyone please fix this . TIA

i am not able to link my style.css file . Its in css folder and i have used <link href="/css/style.css" rel="stylesheet" type="text/css"> to link it.

Hey @PriyaN5, welcome to the community!

Why isn’t your css folder in the static directory? Move it then use <link type="text/css" href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet" /> instead.

And BTW you shouldn’t include the navbar in the head.

2 Likes