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

HTML

Domnick Knowlton
Domnick Knowlton
1,904 Points

Can you help me with this code challenge?

I need help passing the W3 Validator test on my Contact.html Page

http://web-f2sdpy98ay.treehouse-app.com/about.html

1 Answer

Keith Kelly
Keith Kelly
21,326 Points

It 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
Domnick Knowlton
1,904 Points

Actually, 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
Keith Kelly
21,326 Points

I just reran the validator and it seems that everything is working fine now.