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 trialDomnick Knowlton
1,904 PointsCan you help me with this code challenge?
I need help passing the W3 Validator test on my Contact.html Page
1 Answer
Keith Kelly
21,326 PointsIt looks like on line 20 and 31 your text editor might have automatically closed your tags, then you still manually closed the tags.
Here is how line 20 currently looks:
<li><a href="index.html"</a>HomePage</a></li>
It should look like:
<li><a href="index.html">HomePage</a></li>
Here is how line 31 currently looks:
<a href="http://www.se7ensins.com/forums/threads/official-recruitment-rize-thread.1153223/#post-9029527" </a> Join Now</a>
It should look like:
<a href="http://www.se7ensins.com/forums/threads/official-recruitment-rize-thread.1153223/#post-9029527"> Join Now</a>
Hope that helps!
Domnick Knowlton
1,904 PointsDomnick Knowlton
1,904 PointsActually, no it does not it only gets rid of one of the Error Messages. It says so here http://validator.w3.org/check I just need help fixing that code.
Keith Kelly
21,326 PointsKeith Kelly
21,326 PointsI just reran the validator and it seems that everything is working fine now.