<pre>...</pre>
Pre-formatted text allows us to show line breaks and blank lines on our pages without using <p> or <br />.
The <pre> tag displays text on a page the way it is actually entered. So if you hit 'Return' to get new lines, you would not have to use a <br /> after each line. This is great for copying text, such as a poem, into your page.
Example
If you enter:<pre>You will see
line one
line two
line three
line four
</pre>
instead ofline one line two line three line four
line one line two line three line four
Happy coding!
Gnubee