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 Treehouse Club: HTML Publish a Story The Body

How to write inside the body element?

I am confused how to write inside a body element.

Still it says paragraph needs to go between the <body></body> tags. I am still confused.

what is the next course after the HTML structure course?I AM taking the course for the web designing

4 Answers

The body is where you put the front end html. For example:

<body> <h1>HEADER</h1> </body>

I replied in the same way but still it denies and says you have to add <p> tag between the <body></body> tags elements. when I add the <p> tag it says write in between the <body></body> tags, I am still confused.

Hey Muhammad,

Hopefully this helps you out.

<body> <h1>First Header Here</h1> <p>Paragraph begins here</p> </body>

I have tried this options as well but it didn't work