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

I am not getting any photo image for my resume

<!DOCTYPE html> <html> <head> <title>Kwazi Ndlela Resume</title> </head> <body> <img scr="http://placeimg.com/200/200/any" alt="Kwazi Ndlela,Front End Developer"> <h1> Kwazi Ndlela, Front End Developer</h1> <h2>Summary of Qualifications</h2> <ul> <li>Expereince of Web Development</li> <li>HTML,CSS,JAVASCRIPT</li> <li>BA.Economics</li> </ul> </body> </html>

<!DOCTYPE html> <html> <head> <title>Kwazi Ndlela Resume</title> </head> <body> <img scr="http://placeimg.com/200/200/any" alt="Kwazi Ndlela,Front End Developer"> <h1> Kwazi Ndlela, Front End Developer</h1> <h2>Summary of Qualifications</h2> <ul> <li>Expereince of Web Development</li> <li>HTML,CSS,JAVASCRIPT</li> <li>BA.Economics</li> </ul> </body> </html>

Should be <img src="..."> not <img scr="...">

3 Answers

STEVEN PENA

For the src, make sure you put the entire URL. So <img src="http://placeimg.com/200/200/any" alt="image of headphones">

Otherwise, the browser is going to be searching for a folder named "placeimg.com" in your source files.

You mistyped: not 'scr' but 'src'.

Thank you so much Renee.

am stuck in the same problem

<!DOCTYPE html> <html> <head> <title>Steven Pena resume</title> </head> <body> <img src="placeimg.com/200/200/any" alt="image of headphones"> <h1>Steven Pena Web Developer</h1> <h2>Sammary of Qualification</h2> <ul> <li>Experience in Swift language</li> <li>Experience in web development</li> <li>Experience in javascript, css, html and php</li> </ul> </body> </html>