Ho scaricato questo da html.it:
<HTML>
<HEAD>
<!-- Codice scaricato gratuitamente da HTML.it, il sito italiano sul Web publishing
http://www.html.it -->
<TITLE>Demo Dynamic HTML: esempio pratico </TITLE>
<STYLE TYPE="text/css">
.over {color:yellow; background:navy}
.down {color:yellow; background:navy; font-style:italic}
</STYLE>
</HEAD>
<BODY bgcolor="white">
<CENTER>
<INPUT TYPE=BUTTON VALUE="Clicca qui"
ONMOUSEOVER="this.className = 'over';"
ONMOUSEOUT="this.className = '';"
ONMOUSEDOWN="this.className = 'down';"
ONMOUSEUP="this.className = 'over';"></CENTER>
</td>
</table></CENTER>
</body>
</html>
Dove devo inserire l'indirizzo a cui mi rimanderà il bottone una volta cliccato?(es. http://www.html.it)
grazie ciao