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 trialJeeya M
16,839 PointsWhy 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
Treehouse TeacherYou'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!
Philip Gales
15,193 PointsThe 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).
Jeeya M
16,839 Pointsthank you
Jeeya M
16,839 Points``` <!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>© 2k16 .</p>
</footer>
</div>
</body> </html> ```
Jeeya M
16,839 Pointswhat's the error?
Elizabeth Hahn
21,034 PointsJust 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.
Jeeya M
16,839 PointsJeeya M
16,839 Pointsthank you lots