Br tag
From Dharmasphere
[edit]
<br /> Breaking Space Tag
This HTML tag puts a line break in the flow of text on the page. Because it does not need to describe or enclose any text, we do not need to write separate opening and closing tags, which might look like this: <br></br>.
Instead, the tag can be written so that it is self-closing. That is, it opens and closes all within one tag, like this: <br />.
The <br part of the tag opens the element and the /> closes it. There is a single space between the <br and the />.
For example:
This is on one line.<br />And this is on another.
Will display:
This is on one line. And this is on another.
[edit]

