Computer Applications

Distinguish between <P> tag and <BR> tag.

HTML Intro

3 Likes

Answer

<P> tag<BR> tag
The paragraph tag helps to identify and separate paragraphs in an HTML document.The line break tag avoids blank spaces between the lines.
It is a container tag.It is an empty tag.
For example,
<P> This is paragraph 1. <P><P> This is paragraph 2.<P>

Output:

This is paragraph 1.

This is paragraph 2.

For example,
This is line 1. <BR> This is line 2.

Output:
This is line 1.
This is line 2.

Answered By

2 Likes


Related Questions