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

Is anyone else having trouble setting the character set type for the HTML challenge task?

I keep adding

<head> <meta charset = "utf-8"> </head>

but my code seems to not check through.

post your code then maybe i can see where the problem is

Hi Clayton,

I did write my code in the comment, I realize now that it won't show unless I have a screenshot of it. Could you tell me how to share code in a comment?

2 Answers

Juan Perez
PLUS
Juan Perez
Courses Plus Student 8,944 Points

Hi, Heather Hargreaves

You should have The charset inside the <head> tags like this

  <head>
    <meta charset="UTF-8">
  </head>

hope this was of help.

Cheers!

Thanks so much Juan! That worked for me. I think I had spaces around the equal sign, I didn't realize that the code had to be exact.