Pre tag <pre></pre>

When you write HTML code you have line break characters, carriage return characters tabs etc. But HTML does not count them and provide output as single line. Sometimes we want that whatever we write in HTML code it should appear exactly same in browser too. For doing the same you can use pre tag. The text appear exactly same in the browser as it is typed in HTML code or file. Spaces, tabs, and line breaks that present in your HTML code will remain same with the use of pre tag. Example


<pre>
		Roses are Red,
				Violets are blue,
			I may sound crazy,
		But I love you!
</pre>
Output

		Roses are Red,
				Violets are blue,
			I may sound crazy,
		But I love you!