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.

Dylan Davenport
Courses Plus Student 2,645 PointsWhat is the value in putting a paragraph tag <p>in the document.write method?
I have seen this done in a few videos and upon looking it up online I haven't found anything useful.
2 Answers

Steven Parker
216,136 PointsThe "value" is if you want to create a paragraph element.
Tags written to the document will become elements on your page. You can create other kinds of elements by writing different tags to the document. For example, this will create a button:
document.write("<button>Push me</button>");

Dylan Davenport
Courses Plus Student 2,645 PointsOh ok that makes sense. Thanks :)