Louai
Louai

Reputation: 1

I can't connect HTML file to CSS stylesheet on GitHub

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

Answers (1)

pro_nav
pro_nav

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

Related Questions