Home > Software engineering >  cant linking html/css pages
cant linking html/css pages

Time:01-13

I have 3 pages im trying to like:

-index.html

-top-ten.html

-contact.html

my css code is responding fine with the index.html but when i copied the code to the other 2 pages the css isnt responding to that. I tried reading documents and youtube vid but its not really helping. Im sure it's a simple fix but for i just cant figure it out. thanks! ill attach snippits of the codeindex.html page code

CodePudding user response:

Change

<link rel="stylesheet" href="./css/css.css">

to

<link rel="stylesheet" href="../css/css.css">

This will find the css file from those files which are one level deeper in the pages folder.

  •  Tags:  
  • Related