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 trialIjac Mihai
6,976 PointsHello, it gives me the please make sure you display the number-01 immage, what am I doing wrong?
https://dummyimage.com/640x4:3/
this is the entire code, i checked it a lot in the past couple of days, could you help me out?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-g">
<tittle>Mihai | Designer</tittle>
</head>
<body>
<header>
<a href="index.html">
<h1>Mihai Ijac</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>
<a href="img-01.jpg">
<img src="numbers-01.jpg">
</a>
</li>
<li>
<a href="img-02.jpg">
<img src="numbers-02.jpg">
</a>
</li>
<li>
<a href="img-06.jpg">
<img src="numbers-06.jpg">
</a>
</li>
</ul>
</section>
<footer>
<p>© 2014 Mihai Ijac.</p>
</footer>
</body>
</html>
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! You're doing well, but you've missed part of the instructions. Take a look:
Leave the alt attributes blank, and don’t add any captions or links.
You did leave the alt attributes blank, you didn't add any captions, but every one of your pictures is surrounded by an anchor tag <a></a>
. This is the tag that creates a link. Try removing the anchor tags, and your code should pass!
Hope this helps!
edited for additional note
In the first code snippet posted there were no captions. In the second code snippet there are. You should remove the captions to match the requirements of the challenge.
Ijac Mihai
6,976 PointsIjac Mihai
6,976 Points<!DOCTYPE html> <html> <head> <meta charset="utf-g"> <tittle>Mihai | Designer</tittle>