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

how to add a character set attributes for metatag

how to set attributes to meta tag

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset = "utf -10 ">
    <title> Tejaswini | Designer </title>
  </head>
  <body>
    <header>
      <h1> Tejaswini </h1>
        <h2> Designer </h2>
          </header>
    <section>
      <p> Gallery </p>
    </section>
    <footer>
      <p> &copy; 2016 Tejaswini Vadnal </p>
    </footer>
  </body>
</html>

4 Answers

Carlos Federico Puebla Larregle
Carlos Federico Puebla Larregle
21,074 Points

I think the problem is with the extra white space that you have put in your charset. Try doing it like this without white spaces.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-10">
    <title> Tejaswini | Designer </title>
  </head>
  <body>
    <header>
      <h1> Tejaswini </h1>
        <h2> Designer </h2>
          </header>
    <section>
      <p> Gallery </p>
    </section>
    <footer>
      <p> &copy; 2016 Tejaswini Vadnal </p>
    </footer>
  </body>
</html>

I hope that helps a little bit

thank you :)

Tushar Singh
PLUS
Tushar Singh
Courses Plus Student 8,692 Points

What's the difference between utf-8 and 10...etc etc???

Carlos Federico Puebla Larregle
Carlos Federico Puebla Larregle
21,074 Points

Actually I think utf-10 doesn't exists, I use it because was the one being use in the question. Here you have a pretty good link that talks about UTF: http://unicode.org/faq/utf_bom.html#utf8-1