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

Antonio Passariello
PLUS
Antonio Passariello
Courses Plus Student 1,874 Points

Set the Character Set

I'm trying to set the character set for challenge task 4 of HTML first. Below is my code:

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

<body> </body> </html>'''

I thought this solution was correct but it keeps telling me to "add character set attribute for your meta tag."

2 Answers

Sam Nabhan
Sam Nabhan
2,157 Points

Hi Antonio,

<!DOCTYPE html> is a doctype declaration/instruction only and does not set the character set for your document.

To do this, you must place the code that Benjamin specified within the head section. Example below:

<head>
   <meta charset="utf-8">
</head>

Hope this helps.

Benjamin Lange
Benjamin Lange
16,178 Points

The meta tag is an additional tag in the head section. Within the head tag add this:

<meta charset="UTF-8">.