Return to the HTML Tips
Embedding raw HTML code in your web page
Nothing is easier than displaying HTML tags without having the browser perceive them as code. In the line below, the tag <XMP> is used:
<XMP>
<HTML>
<HEAD>
</HEAD>
<BODY>
whatever...
</BODY>
</HTML>
</XMP>
Using these tags, the following code will not be interpreted. Here is the result:
whatever...
[report a broken link by clicking here]