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

The system doesn't let me make it to the next task (Bummer! is displayed) though i'm pretty sure all i wrote is correct

The task is 4 of 6 at stage 2 of web design track. The task is to set the character set to meta tag

All i have already is

<!DOCTYPE html> <html> <head> <meta charset "utf-8"> </head> <body></body>

and this must be enough to complete the task.

What else is needed to add character set to meta tag? Looks like I have already added everything that matters for the task.

Thanks in advance!

Ilya

2 Answers

Juliana Madrone
Juliana Madrone
8,552 Points

It looks like you need to add an equals sign, so the code should be:

meta charset="utf-8" (inside the brackets of course)

Hope that helps!

Juliana,

Thanks a lot! Everything walks fine.