Reputation: 39
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
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