Tecpins

You are welcome to Tecpins, it is free tutorials for people who want to learn about Html Tutorial,Android Tutorials,PHP Tutorials,Java Tutorials and Css Tutorials.

Post Top Ad

ads
Responsive Ads Here

HTML Line Break Tag

Line Break Tag

Whenever you use the <br /> element, anything following it starts from the next line. This tag is an example of an empty element, where you do not need opening and closing tags, as there is nothing to go in between them.
The <br /> tag has a space between the characters br and the forward slash. If you omit this space, older browsers will have trouble rendering the line break, while if you miss the forward slash character and just use <br> it is not valid in XHTML.

Example

<!DOCTYPE html>
<html>
<head>
<title>Line Break Example</title>
</head>
<body>
<p>Line Break Example<br />
Line Break Example<br />
Line Break Example<br />
Line Break Example</p>
</body>
</html>

Result

Line Break Example
Line Break Example
Line Break Example
Line Break Example