0
What is the fullform and use of <br/>
4 Answers
+ 4
<br/> means break,it gives new line to your output
+ 2
Usage:
As Dandi mentioned above Br is used to create a line break.
Create a paragraph with a long text in it, and pkace the line braker to the end of the word where youre planing to create the new line.
<p>quick brown fox <br>jumps over ...</p>
the above will output:
quick brown fox
jumps over ...
Full form:
Depending on the HTML document type you may need to use <br>, <br/> or <br />. For HTML-5 it's enough if you use the first one.
+ 1
<br/> is a tag to create new line.
when you need to break line and start from a new line then you can use <br/> tag.
0
It is used to terminate a line or to move next line.
Eg: echo"hai";<br/> //space between hai and ram <br/> is used.
echo""ram";