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 trialGage 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!