<!DOCTYPE html>
<html>

<head>
  <title>Creating Prefromatted Text Using the <pre> Element</title>
</head>

<body>
<h2>Using the <pre> Element</h2>

<p>The following text is written inside a <b> <pre> </b> element. Multiple spaces should be 
preserved and the line breaks should appear where they do in the source document.</p>

<pre>
    function testFunction(strText)
    {
       alert (strText) 
    }

      1    2    3    4    5    6    7    8    9   10
     11   12   13   14   15   16   17   18   19   20
    111	 122  123  124  125  126  127  128  129 1234
</pre>

<p>The content of the <pre> element is most likely displayed in a monospaced font.</p>

</body>
</html>