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?

This is going through a HTML Validator http://validator.w3.org/check

and I have one error on this page but no matter what I do I can not figure it out. Here is my webpage you can inspect element. I need help with the contact.html page so click Contact link. Then copy and paste the code into the first link and it will give you the problem.

Here is my Website. http://web-f2sdpy98ay.treehouse-app.com/contact.html

2 Answers

Hi Domnick,

You closed off your ul before the li

<ul class="contact-info"></ul>
            <li class="mail"> <a href="mailto:bannerhd@yahoo.com">Spam this E-Mail</a></li>

You want to put the closing </ul> after the closing </li>

I noticed too that you have an equal sign where there should be a hyphen in your responsive meta tag.

<meta name="viewport" content="width=device=width,initial-scale=1.0">

You have an equals between device and width and it should be a hyphen.

<meta name="viewport" content="width=device-width,initial-scale=1.0">

The validator didn't report that one though.

Joey Vanderzee
Joey Vanderzee
17,978 Points

You have missed the close on your ul tag, so the li is getting messed up. Right before you close your section tag you need to close off that ul tag and you should be alright!