'CSS not linking on Github [closed]
Solution 1:[1]
You have spelling mistake in your href
attribute where you are trying to link your css file. If you look closely, your folder where your styles.css
is location is CSS
not css
!. Replace your link to stylesheet with the following line:
<link rel="stylesheet" href="CSS/styles.css">
Remember, file/folder names are case-sensitive.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | akaAbdullahMateen |