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 trialJames Ha
181 Pointscharset attribute is not being recognized?
In step 4/6 of this challenge, the charset attribute of utf-8 is not being recognized. I've tested the live preview on workspace, and it works perfectly fine. Possibly an error with the challenge itself?
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title> James Ha | Designer </title>
</head>
<body>
<header>
<h1>James Ha</h1>
<h2>Designer</h2>
</header>
<section>
<p>Gallery will go here</p>
</section>
<footer>
<p>© 2015 James Ha.</p>
</footer>
</body>
</html>
James Ha
181 PointsHey Jake!
I've removed the space after charset and still run into the same error.
1 Answer
Ayoub AIT IKEN
12,314 Pointshey : take off the space after the equal sign !
Jake Steel
5,048 PointsJake Steel
5,048 PointsHey James,
Try taking away the spaces after charset. it should read like this so no spaces. <meta charset="utf-8">