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

Bryan Cerrati
5,880 PointsParagraphs element
what does it mean by paragraphs element?
2 Answers

Guy Noda-Bailey
18,837 PointsThe paragraph elements are any elements in the html which are wrapped in <p></p> tags.
<p>This is a paragraph.<\p>
They are styled in the CSS as follows;
p {
color: #000000;
}

Steve Suresh
13,185 Points<p>
Bryan Cerrati
5,880 PointsBryan Cerrati
5,880 Pointsthank you i wasnt thinking i didnt think to include paragraphs into a rule.