CBSE Class 10 Computer Applications Question 22 of 31

Solved 2023 Question Paper CBSE Class 10 Computer Applications (165) — Question 10

Back to all questions
10
Question

Question 19

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

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.