Line Break Tag<br>
The LINE BREAK tag makes a new line wherever it is placed on a page. It is used for creating short lines of text There are angels<br>God puts on this earth<br>who cares for us and guides us. There are angels
God puts on this earth
who cares for us and guides us.

Clear Attribute<br clear="">
The clear attribute is used when text and inline images are placed on a page. Text that follows an image on a page will usually be placed beside the image, even if the image is followed by a line break tag. Options that are used with the line break are left, right all, or none.

By using the clear attribute after an image, the text will be displayed below it.

Example:

<p><img src="puppyruns.gif" align="left" height="50" width="200" alt="Puppy Running" border="0"> <br clear="ALL"></b> This text would appear below the image, not beside it</p>

Puppy Running
This text would appear below the image, not beside it

BACK