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

alone lion
alone lion
2,202 Points

set the character set for the page

can anybody tell me which part's issues, thank you. this is my code:

<!doctype html> <html> <head> <meta charset = "UTF-8">

<tytle> </tytle>

</head> <body>

</body>

</html>

index.html
<!doctype html>
<html>
  <head>
    <meta charset = 'utf-8'>

    <tytle> </tytle>
  </head>
  <body>

  </body>

</html>

4 Answers

This is the full answer. Hope this helps. This posting is horrible and always messes up the code sadly.

<!DOCTYPE html> <html> <head> <title></title> <meta charset='UTF-8'> </head> <body> <header></header> <section></section> <footer></footer> </body> </html>

<tytle> </tytle> should be <title></title>

Everything else looks in order.

alone lion
alone lion
2,202 Points

yes, but the system give me a mistake alert. any way, take you for helping me.