View Full Version : Displaying html code on a web page


strawberry22
08-06-2004, 06:56 AM
How can I display HTML code (such as a text link back to my page) on my webpage so it shows up without it turning into code?

salomeyasobko
08-06-2004, 07:23 AM
try <xmp> code here </xmp>


or

&lt; = <
&gt; = >


that means if you wanted to do <a href="whatever"> you would put &lt;a href="whatever"&gt;

:)

pb&j
08-06-2004, 04:21 PM
or put it in a text area...

<textarea rows="4" cols="300"> blah blah blah </textarea>

strawberry22
08-06-2004, 06:22 PM
Thanks for the help!! :)