Reputation: 13
I have 3 pages:
index.html
pages/top-ten.html
pages/contact.html
My CSS code is in
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
Upvotes: 1
Views: 40
Reputation: 185
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.
Upvotes: 2