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

Help? Set the character set for the page. This is what I typed - <meta charset = "utf-8">

Can someone help? I typed the code in per instruction and it's coming out wrong.

The Set the Character Set for the Page should look like this: <meta charset= "utf-8>

Inside the following: <!DOCTYPE html> <html> <head> <meta charset ="utf-8"> </head> <body></body> </html>

It's not working in the assessment.

Ideas?

Thank you!

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset ="utf-8">
  </head>
  <body></body>
</html>

2 Answers

Neil Ganotisi
Neil Ganotisi
20,975 Points

The spacing between 'charset' and the '=' symbol is the thing that is causing the challenge to fail. Change that to the following and you should be good to go!

<meta charset="utf-8">

Neil,

I'm so sorry for the late response. Thank you for your assistance. That did help and I've passed through the assessment :)

You're Awesome!

Sherry