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 trialtejaswini vadnal
1,587 Pointshow to add a character set attributes for metatag
how to set attributes to meta tag
<!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> © 2016 Tejaswini Vadnal </p>
</footer>
</body>
</html>
4 Answers
Carlos Federico Puebla Larregle
21,074 PointsI 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> © 2016 Tejaswini Vadnal </p>
</footer>
</body>
</html>
I hope that helps a little bit
tejaswini vadnal
1,587 Pointsthank you :)
Carlos Federico Puebla Larregle
21,074 PointsYou're welcome Tejaswini, any time.
Tushar Singh
Courses Plus Student 8,692 PointsWhat's the difference between utf-8 and 10...etc etc???
Carlos Federico Puebla Larregle
21,074 PointsActually 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