SHOWING HTML

Showing HTML is so simple. It's so simple you don't even need a tutorial. Just an ISO SPECIAL CHARACTERS (LATIN BASED) chart. In HTML this sign < starts an HTML tag. Meaning that when you type this, your webbrowser takes it as a tag. And takes on that tags actions and therefor the tag that was supposed to be shown is by default invisible. So all you need to do is this:

Trade every < sign in the code you are trying to show with &lt;
and
Trade every > sign in the code you are trying to show with &gt;

The following is an example:
&lt;a href="#" target="_blank"&gt;EXAMPLE LINK&lt;/a&gt;

When displayed in your web browser the above code will appear like this:
<a href="#" target="_blank">EXAMPLE LINK</a>
MAIN
Hosted by www.Geocities.ws