Programming Code Center(PCC)
[HTML]

(PCC)::[use-pre-tag-to-follow-exact-content-you-want-in-html-language]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<head>
<title>Preserve Formatting Example</title>
</head>
<body>
<pre>
function testFunction( strText ){
 alert (strText)
}
</pre>
</body>
</html>

Output :

Preserve Formatting Example
function testFunction( strText ){
 alert (strText)
}