The <p> tag in Html is for paragraph. A paragraph ever begins on different lines. <p> tag add some white space.
<!DOCTYPE html> <html> <body> <p>This is my first paragraph.</p> <p>This is my second paragraph.</p> </body> </html>
Output
This is my first paragraph.
This is my second paragraph.
HTML Horizontal Rules
The <hr> tag creates a horizontal rule across the HTML page.
<!DOCTYPE html> <html> <body> <h2>This is Heading Two</h2> <hr> <p>This is my first paragraph.</p> <p>This is my second paragraph.</p> <hr> </body> </html>
Output
This is Heading Two
This is my first paragraph.
This is my second paragraph.
HTML Line Breaks
The
tag defines a line break in the Html page.
<!DOCTYPE html> <html> <body> <h2>This is Heading Two</h2> <p>This is first paragraph <br> with line breaks</p> </body> </html>
Output
This is Heading Two
This is the first paragraph
with line breaks.