HTML <p> Tag
The <p>
tag is used to define a paragraph.
Web browsers will automatically include a single empty line above and below every
element.
Tip: Apply CSS to format paragraphs.
The <p>
tag is used to define a paragraph.
Web browsers will automatically include a single empty line above and below every
element.
Tip: Apply CSS to format paragraphs.
<!DOCTYPE html> <html> <body> <h1>The p element</h1> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p>This is a paragraph.</p> </body> </html>