W3 3.2d
4.0n
NS 3.0y
4.0y
IE 3.0y
4.0y
TV 1.2y
2.1y

<LISTING>...</LISTING>

Description

This is used to show a program listing. Text inside this will retain the same spacing as it is written. So multiple spaces remain multiple spaces and a carridge return will jump to the next line.

Note: This element is no longer supported by the current HTML standard (4.0). You should use the PRE element instead.

Attributes

** None **

Examples

Source
<LISTING>
program HelloWorld;

begin
write('Hello World!);
end.
</LISTING>
 
Result
program HelloWorld; begin write('Hello World!); end.
Statistics