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 trialfiyinfoluwasoyoye
286 PointsSet the character set for this page question
I don't get it, this is the code that the video explains so why do I keep not getting it right? Question says 'set the character set for this page.' I wrote <meta charset ="utf-8">. What is wrong? This is frustrating.
<!DOCTYPE html>
<html>
<head>
<meta charset ="utf-8">
</head>
<body>
</body>
</html>
1 Answer
Dale Bailey
20,269 PointsTheres a space after charset, it should be...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
</body>
</html>
fiyinfoluwasoyoye
286 Pointsfiyinfoluwasoyoye
286 PointsOh thank you so much! Newbie mistake, I suppose.