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 trialistvan czokoly
Courses Plus Student 1,686 PointsI cant finish the 4question html my first paragraph?
html my first paragraph?
<!DOCTYPE html> <html> </html> <html> <head></head><body></body></html> <p>
3 Answers
Chuck Underwood
22,751 PointsHello istvan,
You have an extra set of <html> tags. The <p> tag needs to be inside the <body> tags with a matching </p> to close the paragraph. I included an example below to reference.
<!DOCTYPE html>
<html>
<head></head>
<body>
<p></p>
</body>
</html>
Marius Mejeris
Front End Web Development Techdegree Student 9,246 PointsHi Istvan,
You have to close your paragraph tag by </p>.
istvan czokoly
Courses Plus Student 1,686 PointsHey there can you send it I'm trying it 3 0 different ways </p> I can't put the my first paragraph in it