I have a header.php file which contains a .css file link.
header.php
.css
When I \"include\" header.php into another php file in different fo
Write the absolute path of the css file like:
<link href="http://site.com/css/style.css" />
Like this:
<link rel="stylesheet" href="/css/style.css" />
The first / says "Go to the root directory and look from there". It's a relative path.
/