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
Seth Goldberger
2,340 PointsCan someone please look at my workspace and tell me what's wrong I can't figure it out looks just like the one in class.
Here is my code : Footer Body and html are highlighting red at the very end of the code and style & head right after the orange background declaration.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Seth Goldberger</title>
<link rel="stylesheet" href="css/normalize.css"
<style>
nav {
color: white
background-color: orange
}
</style>
</head>
<body>
<header>
<a href="index.html">
<h1>Seth Goldberger</h1>
<h2>Designer</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>
<section>
<ul>
<li>
<a href="img/numbers-01.jpg">
<img src="img/numbers-01.jpg" alt="">
<p>Experimentation with Color and Texture</p>
</a>
</li>
<li>
<a href="img/numbers-01.jpg">
<img src="img/numbers-02.jpg" alt="">
<p>Experimentation with Stuff</p>
</a>
</li>
<li>
<a href="img/numbers-06.jpg">
<img src="img/numbers-06.jpg" alt="">
<p>Experimentation with Other Stuff</p>
</a>
</li>
</ul>
</section>
<footer>
<a href="https://twitter.com/h2baplaya"><img src="img/twitter-wrap.png" alt="Twitter Logo"</a>
<a href="https://www.facebook.com/MoneyMaker921"><img src="img/facebook-wrap.png" alt="Facebook Logo"</a>
<p>© 2015 Seth Goldberger.</p>
</footer>
</body>
</html>
1 Answer
Garry Hicks
1,345 PointsYou haven't closed your <link> tag. It should have an '>' at the end, instead of being left open to bleed into the next element below it. Cheers :)
Seth Goldberger
2,340 PointsSeth Goldberger
2,340 PointsThanks Garry figured it out a few minutes ago but I appreciate the help. For whatever reason though, when I try to preview my workspace online it looks nothing like the one in Nick's class. Could it be because it's opening in Firefox and not Chrome? I can't figure it out. If you have any ideas, please let me know.
Garry Hicks
1,345 PointsGarry Hicks
1,345 PointsIt could be. Things will look different across different browsers, so it's entirely likely. I haven't taken the course you're working on, so I wouldn't be able to tell you for certain.