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

Set character set for page... What is it supposed to be?

I put what was used in the video and I'm getting it wrong

1 Answer

rydavim
rydavim
18,813 Points

Welcome to Treehouse!

It may be that your syntax is just a bit off. Remember that programming languages are going to be very particular about the way you write your code. Your character encoding should be utf-8 in a meta tag. You'll be using the charset attribute, which is short for character set.

<meta charset="utf-8">

Hopefully that helps! Happy coding! :)

I don't think it's case sensitive, but technically the value should be in uppercase (and definitely needs the hyphen):

<meta charset="UTF-8">