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 How to Make a Website HTML First Use HTML Elements

I did a title tag, but it's saying I didn't on Step 5 of 6.

It keeps saying "bummer, dont forget to add a title to your page" but I definitely did.... why can't I move past this?

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset='utf-8">
    <title>Courtney Parthemore | Designer</title>
  </head>
  <body>
  </body>


</html>

1 Answer

Steven Parker
Steven Parker
229,732 Points

You have mismatched quotes in your meta tag.

You can use either style of quote, but they must match.

Haha, well thank you. I didn't realize that they weren't matching. Thanks!