Tag Description
<pre> The HTML <pre> tag is used for preformatted text. Browsers normally render <pre> text in a fixed-pitch font, with whitespace in tact, and without word wrap.

Example:

HTML Code Display

<pre>
for i = 1 to 10
    print i
next i
</pre>
                
for i = 1 to 10
    print i
next i