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

Sofia Bastulli
PLUS
Sofia Bastulli
Courses Plus Student 612 Points

Set the Character set for the page help

What am I doing wrong with the meta tag?

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

2 Answers

Michael Hulet
Michael Hulet
47,912 Points

There 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>

Oops,

Didn't catch that.

Hey Sofia,

Try writing the character set using capital letters.

<head>
    <meta charset="UTF-8">
</head>
Michael Hulet
Michael Hulet
47,912 Points

What'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 =