<html>
<body>
<pre>
This is
preformatted text.
It preserves
both
spaces
and
line breaks.
</pre>
<p>The pre tag is good for displaying computer code as normal paragraph tags
omit multiple spaces and linebreaks.</p>
<pre>
10 for i = 1 to 10
20 print " Number = ";i
30 next i
</pre>
</body>
</html>
Copy and paste in Notepad, then save as .htm or .html file and view the results in the default browser.