Usually, when people want to show raw HTML on their site, whether it be for tutorials, or just to provide a copy and paste code for images for things such as MySpace and whatnot, the code is usually inside of an edit box. While this is probably the easiest way to do it, it can sometimes be very sloppy.
In order to show HTML on your site without any edit boxes, you have to add the code manually with an HTML tag.
These are most of the tags:
Code:
&
<
>
¢
€
£
©
®
™
These codes will add (in order):
Code:
&
<
>
Blank Space
¢
€
£
©
®
™
So, let's say you wanted to show how to show an image on their page, you'd input the following into your page:
<img src="http://waloosh.com/images/image.png">
This directly translates into:
<img src="http://waloosh.com/images/image.png">
Of course, this should be used on smaller projects, as an entire layout (such as the previously mentioned MySpace code) would take a lot of patience and a lot of free time to do. It will also probably cause a bit of confusion.