Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML Introduction to HTML and CSS (2016) HTML: The Structural Foundation of Web Pages and Applications Image Tags

Enemuo Felix
Enemuo Felix
1,895 Points

HTML images doesn't show

I uploaded an image from my PC to the file and tried adding it to the HtML doc just like Treasure did but only the alt statements shows in place of the image when i preview my Workspace . What could be the issue? Here is the link https://w.trhou.se/a6oi5aimkb

1 Answer

Christian Puga
Christian Puga
3,736 Points

Hello, i found your problem, the filename of your img has an space and you are not typing the correct namefile of your img in your html.

album art.PNG this is the name of your file

src="images/albumart.PNG" this is how u have it

src="images/album art.PNG" thats the space u need to add

You just need to correct that in the html img section and you'r good to go

Good luck