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 trialSoon Han Ooi
Courses Plus Student 1,062 PointsSet the character set. I followed exactly as in the video but still the wrong answer.
Thank you
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8”>
</head>
<body>
</body>
</html>
4 Answers
Joe Nguyen
25,189 PointsAh,it was hard to tell but when I did your <meta charset="utf-8”> right next to my <meta charset="utf-8"> I noticed something was wrong because your quotation marks were not the same, one of the marks was this” and the other one was this ” which was why you were not able to pass.All you have to do is change that ” to ”.
Here is what you are supposed to have :
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
</body>
</html>
Sheila Anguiano
Full Stack JavaScript Techdegree Graduate 35,239 PointsIt should work, try restarting the challenge, sometimes Workspaces disconnects and doesn't get your latest input.
Riki Montgomery
9,803 PointsYeah. I'm not sure what you did. I just retyped it and it worked for me.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
</body>
</html>
Soon Han Ooi
Courses Plus Student 1,062 PointsI changed the quotation mark from " to ' then it worked fine.
Thanks again, guys.
Joe Nguyen
25,189 PointsNo problem.