Got a little techonology problem that you need fixed pronto? Post it here and we'll see what we can do.
Topic locked

HTML help

Fri Jun 30, 2006 11:36 pm

Most likely this is a stupid question but how do I post a html code on a website so that everyone can see the code and not the image?

Sat Jul 01, 2006 12:26 am

Replace <and> with &lt; and &gt; respectively. Alternatively, you can also place the whole snippet in TEXTAREA tags.

Sat Jul 01, 2006 5:30 am

You can also try xmp tags. I haven't used them in forever but I think they still work.

<xmp>html you want to display here</xmp>

Sat Jul 01, 2006 10:57 am

Medusa wrote:You can also try xmp tags. I haven't used them in forever but I think they still work.

<xmp>html you want to display here</xmp>


<xmp> is deprecated.

Sat Jul 01, 2006 6:54 pm

You can also use a textarea code.

Code:
<Textarea>INSERT TEXT HERE</textarea>


That's a simple textarea. :)

Sat Jul 01, 2006 10:42 pm

Technically, you're still supposed to transform <> to entities if you're using a textarea. Otherwise, try putting </textarea> into <textarea> tags.
Topic locked