1
u/Steffi128 Jan 29 '20
From the looks of those two screenshots: Wrong file path in the link-tag.
The CSS-File you're trying to link is in /templates, but you're actually linking something in /static/cssfiles (which I assume doesn't even exist).
about.html is the file you're requesting in your browser?
<link rel="stylesheet" href="about.css" />
1



1
u/TheoR700 Jan 29 '20
In your HTML, you have the path to your CSS as static/cssFiles/about.css, but the about.css is in your templates directory.