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 trialparvel sigauke
486 PointsCharacter set
how do i set the character set for the page
<!DOCTYPE html>
<html>
<head>
<meta charset= "utf-10"/>
<title>M Matikiti | Designer</title>
</head>
<body>
h1 {
<style>
color: "blue"
</style>
}
<header>
M Matikiti
</header>
<section>
<h1>Design expected</h1>
</section>
<p> learning designing</p>
<footer>
<p> ©2015 Matikiti </p>
</footer>
</body>
</html>
2 Answers
Gennaro Turco
2,557 PointsThe selection of a character is defined by a "Meta tag" see the example below:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
</body>
</html>
Hope this helps you!
parvel sigauke
486 Points@Gennaro Turco- thank you very much, i have discovered that when i was typing, i created a space between the equal sign and the value like this <meta charset= "utf-9"> instead of <meta charset="utf-9". Stay blessed.