i fail to get my css file to link it with the index file

65 Views Asked by At

Root file is Practise2 folder:

-Resources (folder)
-php_script (folder)
-index.php (file)

inside Resources file:

-html (folder)
-styles (folder)
-images (folder)

inside the styles folder:

-login.css (file)

I want to link the login.css file with the index.php file

index.php linking code…

<link rel="stylesheet" href="/Resources/styles/login.css">
1

There are 1 best solutions below

0
Prathamesh On

Try adding a dot to the previous Resources folder.

<link rel="stylesheet" href="./Resources/styles/login.css">