Moonlit
07-09-2004, 05:35 AM
Is this wrong for showing HTML?
<p><<a href="http://Blah.com" target="_blank">
<img src="Blah.jpg" width="2" height="2" alt="Blah"></a>>
< will appear as < on your webpage.
> will appear as > on your webpage.
your snippit of coding will appear like a linked image with < > around it.
perhaps you are trying to do this....
<a href="http://Blah.com" target="_blank">
<img src="Blah.jpg" width="2" height="2" alt="Blah"></a>
or this...
<xmp>
<a href="http://Blah.com" target="_blank"><img src="Blah.jpg" width="2" height="2" alt="Blah"></a>
</xmp>
Moonlit
07-09-2004, 05:45 AM
Okay...so on the first one you posted...what part of that makes it so I can see the HTML on the page?
each time you want < to appear on your webpage, you have to type in the < code.
each time you want > to appear on your webpage, you have to type in the > code.