How to connect css style in php file?
In the header connected, but in another file - does not work. There is a header.php file in which css connected, it works ok.
<head> <link rel="stylesheet" href="style.css" type = "text/css"> <meta charset="utf-8"> </head> And there is a file file1.php , in which include header.php :
<?php include("header.php"); ?> In the file1.php css style is called:
<ul class="first"> <li>Строка 1</li> </ul> But on the site it is not displayed. What should be added to the code?
I have all the files in the same folder for now, for simplicity.