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 Build a Simple Website Text Editors and HTML Images and Lists

How to add image?

Im having trouble adding an image. Can someone tell me what is wrong with this code. <img scr="img/cupcake.jpg" alt="cupcake">

2 Answers

I don't see any code? Maybe post what you are having trouble with exactly.

Well just make sure about a few things first
Lets assume you are creating your html project in a folder called Demo and you have your main html file called main.html in the same folder. In the same folder demo we also assume you have your logo called logo.jpg
So to call your logo i.e. logo.jpg in your main.html file you will use the tag within the body tags

<img src="logo.jpg" alt="" />

If you have your image files in a subfolder called Images inside your Demo folder then you will refer to the image as

<img src="Images/logo.jpg" alt="" />

Try looking into your html code too. Maybe you spelt something wrong (it is case sensitive) or forgot to close the tags.
If it still doesn't work you can post your code here so that we can look into it.
Hope that helps