The <pre> tag represents the preformatted text of the HTML document. The preformatted text display on the browser in a fixed-width font (usually Courier), and it preserves both spaces and line breaks.
Example of Code
<pre>
The pre
element preserves spaces,
line-breaks, tabs...
</pre>
Output
The pre
element preserves spaces,
line-breaks, tabs...
