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

HTML

the Question stated we've placed an image named 'cupcake.jpg' in a directory named 'img' and they then want me to add the image to the body of the document . Could someone please help me ive tried everything but cant figure it out.

5 Answers

under body add <img src="img/cupcake.jpg">

John MacDonald
John MacDonald
8,593 Points

I don't know what it is with Treehouse but are they stripping all the markup?

Hi John,

Yes the forums will strip out html tags if they're not posted properly.

See this discussion for ways to post code in the forums: https://teamtreehouse.com/forum/posting-code-to-the-forum

You have to add < img src="img/cupcake.jpg"

To the body of your html document.

John MacDonald
John MacDonald
8,593 Points

You have to add the < img > tag in between the < body > tag

In between the body tags, you will need to add the img.

<body>

<img src="img/cupcake.jpg" >

</body>

Thanks guys i got it