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 trialMartina Vonkomerova
7,790 PointsHi, I am being asked to ad a paragraph tag in between my body tags, which I have done but the system wont accept it.
Its probably an obvious mistake that i am making
<!DOCTYPE html>
<html>
<Head>
<style>
h1{text-align: centre; colour:green}
h2 {text-align: left; colour:blue}
<h1> A New Start </h1>
<h2> Lets begin </h2>
</head>
<body>
<p>My first Paragraph</p>
</body>
</html>
2 Answers
Unsubscribed User
7,176 PointsHey Martina,
theoretically your code is absolutely correct! The only mistake is that you didn't write the exact same text inside the p tags as the instruction tells you to do ;-) Write: "My first paragraph!" inside the p tags and you should be good to go.
I hope that was helpful, Patrick :-)
Martina Vonkomerova
7,790 PointsThank you Patrick, I realised this a few minutes after i posted this questions but i appreciate your response.