HTML - Line break

  »   Basic HTML  »   HTML Tutorial - Line break / Break the line

A line break is different from the other tags that we have seen before. The place we put it in the source code of the document will end the line and it will go down with a line, letting a space that is smaller than the one from the paragraph. In the paragraph is used, as you can see, in the next example.

html<p>
	Charles Brownstone<br />
	Florida Street No 1<br />
	New York, USA<br />
</p>

Demo

Charles Brownstone
Florida Street No 1
New York, USA

As well it can be used for pointing out a signature, for example at the end of a letter.

html<p>
	Thank You,<br />
	<br />
	<br />
	<!-- Note that the next tag is "hr" and not "br". 
	We will see this tag in the next tutorial -->
	<hr />
	Charles Brownstone<br />
	Vice-President
</p>

Demo

Thank You,



Charles Brownstone
Vice-President