LEEVANCE SINGH
LEEVANCE SINGH

Reputation: 39

Why CSS is not working on my GitHub pages

https://github.com/Leevance-singh/tech

CSS is not working on my GitHub pages and I've searched more than 40 forums and solutions but still can't get it working. My href is correctly pointed towards CSS file but still can't see changes live on website.

Upvotes: 0

Views: 2169

Answers (1)

DineshMsd
DineshMsd

Reputation: 140

I suggest you store your CSS file in a separate folder name it as css and then name your file as styles.css with no uppercase letters.

Change your link as <link rel="stylesheet" type="text/css" href="css/styles.css">

See linking approach here https://www.codecademy.com/forum_questions/553bcfc6d3292f7e1b000760

Upvotes: 1

Related Questions