Line Break  - <BR>

Previous- BODY - The main body of the page  |  Next-BUTTON - Clickable button

Description
This element produces a line break, and is one of the most used tags, since html does not observe line breaks in the source text. Blocks of text can be separated by multiple <BR> tags, although once again, HTML 4 would prefer the use of style sheets and <P> tags to control the spacing of text.
Attributes
NameValuesDescription
classclassnameClass of the element which is used to associate the element with a style sheet.
clearall|left|right|noneUsed with the BR element, this attribute allows control of text wrapping around an image.
idstringA unique name to identify an element.
languagejavascript|jscript|vbscript|vbs
stylestringSpecifies style information for the element.
titlestringTitle for element which is often displayed as a tool-tip when the cursor hovers over the element.

Example
this is a line of text.
this line runs immediately after it.
<br><br>
this is a line of text.<br>
this line of text is displayed below it.
Will be displayed as :
this is a line of text.
this line runs immediately after it.


this is a line of text.
this line of text is displayed below it.

Compatability
HTMLNETSCAPEINTERNET EXPLORER
4.1N2N3N4N6IE3IE4IE5IE6
YES YES YES YES YES YES YES YES YES

Previous- BODY - The main body of the page  |  Next-BUTTON - Clickable button