Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Gage Bishop
1,173 PointsWhat am I doing wrong on HTML Structure? I have everything right in HTML but when I am putting word into paragraph no
What am I doing wrong on HTML Structure?
I have everything right in HTML but when I put my words into my paragraph it tells me Bummer!!

Gage Bishop
1,173 Points<!DOCTYPE html> <html> <head> <title> <metacharset="utf-8"> <style> h1{text-align: center; color: green} h2{text-align: center; color: pink} </style>
</head>
<body> <h1> Peg Leg </h1> <h2> By Joy Kestens </h2>
<p> My first Paragraph </p>
</body>
</html>
4 Answers

K Cleveland
21,839 PointsLooking over it quickly, I notice that you have an open <title> tag. Depending on what the question is asking, you can delete the <title> or add in a closing tag </title>. Hope this helps!

Gage Bishop
1,173 PointsAlright, I'll try that and let you know if it helps

Mohamed Youssouf
Courses Plus Student 1,138 PointsThe title tag not closed!

Gage Bishop
1,173 PointsThanks guys, the problem has been solved.
K Cleveland
21,839 PointsK Cleveland
21,839 PointsHi Gage!
Would you please provide a link/snippet of your code? Thanks!