Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Scott Craig
41,171 PointsI think there is a problem with the treehouse error checking program here
I've set the visited pseudo-class to firebrick as instructed. The editor keeps insisting that I haven't.
a:link {color:darkorange;} a:visited {color:firebrick}
a:link {color:darkorange;}
a:visited {color:firebrick}
<!DOCTYPE html>
<html>
<head>
<title>Pseudo-classes Challenge</title>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Lake Tahoe, California</h1>
<h2>Journey Through the <a href="https://en.wikipedia.org/wiki/Sierra_Nevada_(U.S.)">Sierra Nevada Mountains</a></h2>
<p><a href="https://en.wikipedia.org/wiki/Lake_Tahoe">Lake Tahoe</a> is one of the most breathtaking attractions located in <a href="https://en.wikipedia.org/wiki/California">California</a>. It's home to a number of ski resorts, summer outdoor recreation, and tourist attractions. Snow and skiing are a significant part of the area's reputation.</p>
</header>
</body>
</html>
1 Answer

Chukwuemeka Chima
3,454 PointsHello Scott, You forgot to add a semicolon at the end of your color property declaration. Can you add it and try again? Like
a:link {
color: darkorange;
}
a:visited {
color: firebrick;
}
Kevin Gates
14,855 PointsKevin Gates
14,855 PointsYou are correct. Good catch.
Scott Craig
41,171 PointsScott Craig
41,171 PointsHi,
I already tried it with and without a semi-colon multiple times with no success.
It changes the output in the preview correctly. But tells me it is incorrect when I click 'check work'.
That's what makes me think there was an error with the answer checking program.