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 trialSevilla Charles-Edouard
839 PointsI don't understand why it's not working: i put <body> <p> </body>
I tried also <body> <p> my paragraph is... </p> </body> but it's not correct also, i don't understand thank you for your help
<!DOCTYPE html>
<html>
<meta charset="UTF-8>
<head>
</head>
<body>
<p>
</body>
</html>
2 Answers
ve
5,048 PointsYou forgot to close the quote in your <meta>-element. This causes an issue with the following code. Plus, try to add as a paragraph just what they want to:
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<head>
</head>
<body>
<p>My first paragraph!</p>
</body>
</html>
Feisty Mullah
25,849 PointsYour meta should be inside head and with quote marks. <head> <meta charset="utf-8"> </head>
mathisvester
13,451 Pointsmathisvester
13,451 PointsActually your answer is right. Furthermore the
<meta charset="UTF-8">
should be within the
<head></head>
tag.