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 trialvanessabolua
166 PointsMy image is not showing on the preview. Please see below for my code.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Vanessa Bolua | Designer</title> </head> <body> <header> <a href="index.html"> <h1>Vanessa Bolua</h1> <h2>Designer</h2> </a> <nav> <ul> <li><a href="index.html">Portfolio</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> </header> <section> <ul> <li> <img src="img/numbers-01.jpg" alt=""> </li> </ul> </section> <footer> <p>Ā© 2017 Vanessa Bolua.</p> </footer> </body> </html>
Megan Oliver
Front End Web Development Techdegree Graduate 20,985 PointsYou didn't close your img tag. Add a </img> to the end and you should be good to go.
1 Answer
Michael Lambert
6,286 PointsThe img tag doesn't need a closing tag. It's self-closing so just double check the link to the source and make sure it's correct. It's case sensitive too so if the source is all in lowercase, the link name must be too.
Karl Noelle
5,082 PointsKarl Noelle
5,082 PointsMake sure you close your <img> tag. There are 2 ways to do this:
<img src=""></img>
or<img src="" />
Might also help to double-check the src and which directory you're accessing the image from (if the index.html is in the root directory, you'll need the 'img' directory in the root as well.)