KnowledgeBoat Logo
|

Computer Applications

What is the difference between <br> tag and <p> tag in context of HTML ? Illustrate using suitable examples.

HTML Intro

6 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>
For example,
This is paragraph 1. <BR> This is paragraph 2. <BR>
Output

This is paragraph 1.

This is paragraph 2.

Output
This is paragraph 1.
This is paragraph 2.

Answered By

3 Likes


Related Questions