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 trial5 Answers
Rohald van Merode
Treehouse StaffHi Jason,
The <p> tag is the HTML code for paragraph, so this will insert the finished sentence as a paragraph text in the HTML file.
Hope this cleared things up.
Valerie Way
8,544 PointsThis displays the sentence as a paragraph within the HTML file.
Rick Gleitz
47,876 PointsDon't forget the </p> at the end of the paragraph's text!
kevin hudson
Courses Plus Student 11,987 PointsAlso if you are asking this type of question about HTML tags, you need to take a step back and go over the basic HTML courses before venturing on to JavaScript.
Ainne Oum
3,221 PointsThe HTML <p> element represents a paragraph. Paragraphs are usually represented in visual media as blocks of text separated from adjacent blocks by blank lines and/or first-line indentation, but HTML paragraphs can be any structural grouping of related content, such as images or form fields.
Joseph Hookham
2,493 PointsJoseph Hookham
2,493 PointsIt's a HTML tag which puts your text into a paragraph (on the webpage). If you haven't done the HTML & CSS basics I'd recommend that - it'll make more sense.
You could also use <h1></h1> or <h2></h2> tags etc. for different formatting options.