Reputation: 131
I have a website that I am developing. It's currently hosted on GitHub pages for Dev purposes. KevinRanke.github.io
The main image with alt text of "IRS" is not loading and I don't know why. Any ideas? Naming convention wrong? IMG tag having the wrong class attribute? Any and all help is appreciated!
Upvotes: 1
Views: 3150
Reputation: 11
.PNG files are saved with capitals (.PNG) this is why some of my images loaded (.jpeg) and some didn't (the.PNG files didn't load because i wrote them as .png in my html)
Upvotes: 0
Reputation: 4632
URLs are case sensitive. In your HTML, you are linking to the image:
https://kevinranke.github.io/images/skillet.jpg
Whereas in your repository, the extension is capitalized:
https://kevinranke.github.io/images/skillet.JPG
Upvotes: 3