I am aware that there are other posts on this, however, none of the answers have helped fix my issue. I am making a django project and would like to use some basic css on my page, however it does not seem to be linking. The html file is in a folder called templates, while the css is in a folder called static. Here is what I used to link my css.
<link rel="stylesheet" type="text/css" src='../static/style.css'>
And my css file looks like this:
body {
background: black;
}
h1 {
color: white;
}
Any help would be appreciated.