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 trialalone lion
2,202 Pointsset 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>
<!doctype html>
<html>
<head>
<meta charset = 'utf-8'>
<tytle> </tytle>
</head>
<body>
</body>
</html>
4 Answers
John Renzema
9,070 PointsThis 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>
John Renzema
9,070 Points<tytle> </tytle> should be <title></title>
Everything else looks in order.
alone lion
2,202 Pointsyes, but the system give me a mistake alert. any way, take you for helping me.
alone lion
2,202 Pointsthank you.