2000 AD Online Forum

General Chat => Help! => Topic started by: Conexus on 16 September, 2004, 10:28:08 PM

Title: How do you make HTML button things
Post by: Conexus on 16 September, 2004, 10:28:08 PM
 To link to other pages/sites. I've been looking at the HTML of the Yahoo group button I pasted into my weblog, and I can't quite make out what's going on (I have a vauge idea)
Title: Re: How do you make HTML button th...
Post by: Art on 16 September, 2004, 10:33:39 PM
I assume you mean a HTML form button rather than a regular link, or an image that loosk like a button inside a link? You;d do that a bit like this:
<form>
<input type="button" onClick="document.location='http://www.whatever.com'">
</form>