Reputation: 1
here are my GitHub files:
removed
The files all worked well locally, but problems appeared when I uploaded the code on GitHub. I even discovered that some html link tags didn't work. What am I doing wrong?
Upvotes: 0
Views: 68
Reputation: 23
Check your links as the CSS link is not pointing the right file <link href="resources\css\egypt.css" type="text/css" rel="stylesheet">
there is no file at such location.
doing this will solve your error <link href="./Egypt.css" type="text/css" rel="stylesheet">
Upvotes: 1