Solved by Nick R
Can someone please help me with this, my stylesheet isn't loading on my site and I don't know what I'm doing wrong
This is the HTML I have :
<html>
<head>
<link rel="stylesheet" type="text/css" href="../files/styles/website.css" media="ALL"></link>
</head>
</html>
And this is the CSS Code :
@charset "utf-8"
body {
background-color:#FF0000
}
<html>
<head>
<link rel="stylesheet" href="../files/styles/website.css">
</head>
</html>
check your path, if this won't work try to use absolute path
<html>
<head>
<link rel="stylesheet" href="http://yourdomain.com/files/styles/website.css">
</head>
</html>