Language References
Inserts a line break. | HTML 2, 3.2, 4, 4.01, 5 |
HTML Syntax
<br
class = classname
clear = all | left | right | none
id = value
style = css properties
title = text
>
The BR element specifies a break in a line of text, but does not add extra space before the new line. If text is wrapping around an element such as an image, the clear attribute can be used to force the text to continue its flow at the next clear line, that is, until it stops wrapping around the element.
The BR element does not use an end tag.
BR Members
The following example shows how to specify a line break.
<blockquote>Abakada Web Workshop<br>
360 F. Ortigas St., New Zaniga<br>
Mandaluyong City, Philippines 1550<br>
Phone ( 632 ) 531-9061</blockquote>
which would render on a Web page as
Abakada Web Workshop
360 F. Ortigas St., New Zaniga
Mandaluyong City, Philippines 1550
Phone ( 632 ) 531-9061
NOBR WBR