Show HTML

There are three ways to show HTML that I know of. There's probably more, but this is how I do it and it's very simple. 1) The first way to show HTML is by using a textarea. It looks like this:



To make a textarea type: <textarea>TEXT/HTML HERE</textarea>

To change the size you would type something like:

<textarea cols=10 rows=30>TEXT/HTML HERE</textarea>

2) The second way is my favorite. In your codes in place of every < you type &lt; and in place of every > type &gt;. Pretty easy, huh? So instead of typing:

<img src="IMG URL"> You would type:

&lt;img src="IMG URL"&gt;

3) The third way is also very easy. Just type <xmp>TEXT/HTML HERE</xmp>.

Hope this helped!