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 trialSofia Bastulli
Courses Plus Student 612 PointsSet the Character set for the page help
What am I doing wrong with the meta tag?
<!DOCTYPE html>
<html>
<head>
<meta charset ="utf-8">
</head>
<body>
</body>
</html>
2 Answers
Michael Hulet
47,913 PointsThere just can't be a space on either side of the =
. Try this:
<!DOCTYPE html>
<html>
<head>
<!-- Note the closing / at the end of the following tag. That's just a preference thing. I like to do it, but you don't have to -->
<meta charset="utf-8"/>
</head>
<body>
</body>
</html>
jacobproffer
24,604 PointsHey Sofia,
Try writing the character set using capital letters.
<head>
<meta charset="UTF-8">
</head>
Michael Hulet
47,913 PointsWhat's in the quotes is case-insensitive. Thus, it's inconsequential whether it's written as "utf-8"
or "UTF-8"
. The problem lies in that there can't be a space on either side of the =
jacobproffer
24,604 Pointsjacobproffer
24,604 PointsOops,
Didn't catch that.