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 trialChristian Eddleman
289 PointsHaving problems with this.
It seems unclear what exactly is wanted here. Not sure if by "don't add" or "leave blank" its meant that no text should be add to the alt"" or <p></p> sections, or that they shouldn't be added at all.
The hints aren't helpful, and I've typed a lot of text, which was correct in "workspaces" all sorts of ways, and the exercise still doesn't like it. Would like to just move on, but it won't allow that, or I don't know how to.
I think I've gotten these things correct, but I'm very unclear on just what this challenge wants and if I don't get it right, its hard to know what's going wrong, and I don't think anything really is.
2 Answers
David O' Rojo
11,051 PointsOk, I'm not on that track but «leave blank» means that the property must be there but it also should be empty (like alt=""), and «don't add» means that the property should not appear at all in the element. So it must be something like this:
<img src="path/to/file.png" alt="">
I hope it helps.
Christian Eddleman
289 PointsThanks very much.