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 trialDavid Pope
1,709 Pointsimage tag is incorect
Im having trouble with my image tag what am i doing wrong? <!DOCTYPE html> <HTML> <head> <meta charset="urf-*"> <title>David | Designer</title> </head> <body> <header> <a href="idex.html"> <h1>David Pope</h1> <h2>Designer</h2> </a> <nav> <ul> <li><a href="index.thml">Portfolio</a></li> <li><a href="index.html">About</a></li> <li><a href="contact.thml">Contact</a></li> </ul> </nav> </header> <section> <ul> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> <p>Experimentation with color and texture.</p> </a> </li> <li> <a href="img/numbers-02.jpg"> <img src="img/numbers-02.jpg" alt=""> <p>Playing with blending modes in Photoshop.</p> </a> </li> <li> <a href="img/numbers-06.jpg"> <img src="img/numbers-06.jpg" alt=""> <p>Trying to create an 80's style of glows.</p> </a> </li> <li> <a href="img/numbers-09.jpg"> <img src="img/numbers-09.jpg" alt=""> <p>Drips creating using photoshop brushes.</p> </a> </li> <li> <a href="img/numbers-12.jpg"> <img src="img/numbers-12.jpg" alt=""> <p>Creating shapes using repetition.</p> </a> </li>
</ul>
</section>
<footer>
<p>© 2015 David Pope.</p>
</footer>
</body> </HTML>
1 Answer
Grace Kelly
33,990 PointsHi David you're almost there except for a few minor issues regarding what this challenge asks for:
- You do not need a link <a> tag
- You don't need to add a paragraph <p> tag
- Although you're way of linking images is correct, the code challenge does not require you to link to an img directory
Simply, all that is needed within the list items is an image tag that links to each image with an empty alt tag:
<section>
<ul>
<li><img src="numbers-01.jpg" alt=""></li>
<li><img src="numbers-02.jpg" alt=""></li>
<li><img src="numbers-06.jpg" alt=""></li>
</ul>
</section>
Hope that helps!!
David Pope
1,709 PointsDavid Pope
1,709 PointsThank you so much! It worked!
Grace Kelly
33,990 PointsGrace Kelly
33,990 PointsNo problem!! Glad I could help! :)