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 trialPhillip Shepard
206 PointsRed Highlight
Why does the bolded area come up red highlighted? Not sure if there is an error from me or Workspaces.
Thanks
<section> <ul> <li> <a href="img/numbers-01.jpg" <img src**strong**="img/numbers-01.jpg"**strong** alt=""> <p> Experimation with color and texture. </p> </a> </li>
</ul>
</section>
Phillip Shepard
206 PointsHere is a screenshot. This may help. Not sure why it's highlighted.
https://www.dropbox.com/s/275zvgt8ziu5me0/Screenshot%202014-07-28%2022.56.52.png
Phillip Shepard
206 PointsAlso,
https://www.dropbox.com/s/q9e3eu3gkvofdej/Screenshot%202014-07-28%2022.59.23.png
To see my img hierarchy.
3 Answers
Natalia C.
2,027 PointsWhen you see red highlights it means that something is wrong. It's the Workspace's way to draw your attention.
In your code you have forgotten to close the starting a
tags.
It should be: <a href=" ">
You forgot the >
part :)
Sreng Hong
15,083 PointsYou forget the closing bracket of the a opening tag. It should be like this
<ul>
<li>
<a href="...">
<img src="" alt="...">
</a>
</li>
</ul>
Phillip Shepard
206 PointsThanks Sreng!
Phillip Shepard
206 PointsYep! I just caught that.
Appreciate the help.
Natalia C.
2,027 Points:) Happy coding!
Sreng Hong
15,083 PointsSreng Hong
15,083 PointsHi Phillip, I don't get your question. Could you be more specific?