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 trial

HTML

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

K Cleveland
K Cleveland
21,839 Points

Hi Gage!

Would you please provide a link/snippet of your code? Thanks!

<!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
K Cleveland
21,839 Points

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

Alright, I'll try that and let you know if it helps

The title tag not closed!

Thanks guys, the problem has been solved.