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) Adding a New Web Page Write the HTML

Jauthik Kalathiya
Jauthik Kalathiya
1,292 Points

I 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>

Mike Hatch
Mike Hatch
14,940 Points

Please 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.

3 Answers

Tsenko Aleksiev
Tsenko Aleksiev
3,819 Points

Use 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 :)

<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

sorry for being redundant, for some reason I saw the comment but not the answer above me until I posted.