CBSE Class 10 Computer Applications Question 30 of 79

Basic HTML Elements — Question 3

Back to all questions
3
Question

Question 3

What is the difference between <B> and <BR> tags?

Answer
<B> tag<BR> tag
This tag is used for making the text bold.This tag is used to insert a line break.
It is a container element.It is an empty element.
E.g.
<b>This text is bold.</b>
E.g.
This is some text <br> on a new line.