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 trialJauthik Kalathiya
1,292 PointsI can't get the image on the page!!It is not diplayed and its just blank space!?
I have typed this following code: <!DOCTYPE html> <html> <head> <title>Juythik's Resume</title> </head> <body> <img src"http://placeimg.com/400/400/tech" alt"Jauthik kalathiya, Front End Developer"> <h1>Jauthik kalathiya, Front End Developer</h1> <h2>summary of Qualifications</h2> <ul> <li>Experience of HTML,CSS and JAVASCRIPT</li> </ul> </body> </html>
3 Answers
Tsenko Aleksiev
3,819 PointsUse what @Mike Hatch said. For your problem after “src” and “alt” you need an equal sign aka “=“ in order the img tag to work as it should :)
nick black
5,578 Points<img src"http://placeimg.com/400/400/tech" alt"Jauthik kalathiya, Front End Developer">
<img src="http://placeimg.com/400/400/tech" alt="Jauthik Kalathiya, Front End Developer">
Notice my usage of the equals sign
nick black
5,578 Pointssorry for being redundant, for some reason I saw the comment but not the answer above me until I posted.
Jauthik Kalathiya
1,292 Pointsthanks for the help!!
Mike Hatch
14,940 PointsMike Hatch
14,940 PointsPlease edit your Question so that it's showing in Markup Code. Try using this: Markdown Cheatsheet. Treehouse has their own Cheatsheet, but I'm unable to directly link to it.