line break html
Line Break
information
1] A line break ends the line you are currently on and resumes on the next line. Placing <br /> within the code to break the line. Use the <br /> tag within the <p> (paragraph) tag.
2] A line break is marked up as follows:
3] html <br> tag inserts single line break.
4] The <br> tag is an empty tag which means that it has no end tag.
5] The <br> tag is an empty tag which means that it has no end tag.
6] The <br> tag is useful for writing addresses or poems.
7] <br> tag to enter line breaks, not to separate paragraphs.
Syntax :
</br>
Line Break
program
<!DOCTYPE html>
<html>
<body>
<p>
To break lines<br>in a text,<br>use the br element.
</p>
</body>
<body>
<p>
To break lines<br>in a text,<br>use the br element.
</p>
</body>
</html>
Post a Comment