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 How to Make a Website Creating HTML Content Add Image Gallery Content

Red 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>
Sreng Hong
Sreng Hong
15,083 Points

Hi Phillip, I don't get your question. Could you be more specific?

Here 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

3 Answers

Natalia C.
Natalia C.
2,027 Points

When 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
Sreng Hong
15,083 Points

You forget the closing bracket of the a opening tag. It should be like this

<ul>
  <li>
    <a href="...">
      <img src="" alt="...">
    </a>
  </li>
</ul>

Thanks Sreng!

Yep! I just caught that.

Appreciate the help.