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 Include External CSS

Why is there a red highlight in my workspace?

there a red highlight in my workspace which is very distracting and I can't get rid of. How do include a snapshot of my workspace?

4 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

You're missing an ending quote mark on one of your links.

 <li>
      <a href="img/Zoom_smres.jpg">  /*  you left off the ending quote on this line after .jpg */
        <img src="img/Zoom_smres.jpg" alt = "">
        <p>Zoom</p>
      </a>
    </li>

Hope this helps! :sparkles:

thank you lots

The red means you have probably made an error. To take a snapshot though, click on the camera in the upper-right (it is the far left icon in the upper-right).

thank you

``` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> Tegh | Programmer</title> <link rel="stylesheet" href = "css/normalize.css"> <link rel="stylesheet" href = "css/main.css"> </head>

<body> <header> <a href = "index.html"> <h1>Tegh </h1> <h2>Programmer</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> 
<div id = "wrapper">

<section>

  <ul>
    <li>
      <a href="img/Flash_smres.jpg">
      <img src="img/Flash_smres.jpg" alt = "">
      <p>The Flash r</p>
      </a>
    </li>

    <li>
      <a href="img/Zoom_smres.jpg>
        <img src="img/Zoom_smres.jpg" alt = "">
        <p>Zoom</p>
      </a>
    </li>


    <li>
      <a href="img/FutureFlash_smres.jpg">
        <img src="img/FutureFlash_smres.jpg" alt = "">
        <p>Future Flash </p>
      </a>
    </li>


     <li>
      <a href="img/RevFlash_smres.jpg">
        <img src="img/RevFlash_smres.jpg" alt = "">
        <p>The Flash Original by Justin Maller</p>
      </a>
     </li>

    <li>
      <a href="img/NidFlash_smres.jpg">
        <img src="img/NidFlash_smres.jpg" alt = "">
        <p>NidSwag inspired Flash edit</p>
      </a>
    </li>

  </ul>

</section>

  <footer> 
    <a href = "https://twitter.com/"> <img src = "img/twitter-wrap.png" alt="Twitter Logo"> </a>
    <a href = "https://www.facebook.com/"> <img src = "img/facebook-wrap.png" alt="Facebook Logo"> </a>

    <p>&copy; 2k16 .</p>

  </footer>
</div>

</body> </html> ```

what's the error?

Just stumbled across this and thought I would share. Sorry it is so old.

The href above the highlighted code is missing a double quote " after .jpg

I usually look above whatever line is throwing an error. It usually means you are missing so sort of closing tab.