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 trialLuis Recinos
Courses Plus Student 2,728 Pointscan't validate
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <titel>Luis Recinos | Coach | Software Developer</titel> <link rel="stylesheet" href="css/normalize.css"> <link href="https://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400,400i,700,700i,800" rel="stylesheet"> <link rel="stylesheet" href="css/main.css"> <link rel="stylesheet" href="css/responsive.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head>
<body> <header> <a href="index.html" id="logo"> <h1>Luis Recinos</h1> <h2>Coach | Software Developer</h2> </a>
<nav>
<ul>
<li><a href="index.html" class="selected">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 id="gallery">
<li>
<a href="img/numbers-01.jpg">
<img src="img/numbers-01.jpg" alt="">
<p>Experimentation </p>
</a>
</li>
<li>
<a href="img/numbers-02.jpg">
<img src="img/numbers-02.jpg" alt="">
<p>Stuff</p>
</a>
</li>
<li>
<a href="img/numbers-06.jpg">
<img src="img/numbers-06.jpg" alt="">
<p>80s glows</p>
</a>
</li>
<li>
<a href="img/numbers-09.jpg">
<img src="img/numbers-09.jpg" alt="">
<p>Shapes</p>
</a>
</li><li>
<a href="img/numbers-12.jpg">
<img src="img/numbers-12.jpg" alt="">
<p>Repetition</p>
</a>
</li>
</ul>
</section>
<footer>
<a href="https://twitter.com/pelir12"><img src="img/twitter-wrap.png" alt="twitter logo" class="social-icon"></a>
<a href="https://www.facebook.com/pelir"><img src="img/facebook-wrap.png" alt="FaceBook logo" class="social-icon"></a>
<p>© 2017 Luis Recinos.</p>
</footer>
</div> </body>
</html>
1 Answer
Jason Anello
Courses Plus Student 94,610 PointsHi Luis,
When I run it through the w3c validation service. I get 2 errors.
One is that you have a typo on your <title>
You have it as <titel>
This is for both the opening and closing tag.
The other thing is that it is complaining about the vertical pipe character |
that appears in the google fonts url. This is an illegal character for urls and should be url encoded.
If you replace that vertical pipe with %7C
then it will fix that error.
The other thing is a warning about not having a heading for your section. This was not used for this course and it's only a warning so you can safely ignore that.
Luis Recinos
Courses Plus Student 2,728 PointsLuis Recinos
Courses Plus Student 2,728 Pointsthanks for the help! was stuck there for a while