I have 3 pages:
index.html
pages/top-ten.html
pages/contact.html
My CSS code is in
- css/css.css
Everything is fine with the index.html but when I copy the code to the other 2 pages the CSS isn't responding to that.
I'll attach snippets of the code index.html
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.
