[Fixed]-Django where should I put my CSS file

1👍

You just need to put the CSS file somewhere and tell HTML were to find using the link tag.
For example, if the file is in the folder “style” the tag will be.

<link rel="stylesheet" href="/style/file.css" />

Usually the main css style fail was in the root folder or in a style folder.

Leave a comment