BOTTONE GRIGIO CON APERTURA IN QUESTO FRAME

Questo è il classico bottone grigio da inserire nelle vostre pagine web, molto semplice da inserire, il colore predefinito è grigio e insostituibile. Si può cambiare il testo e l'indirizzo che desiderate

Scarica il bottone grigio

RITORNA ALLA PAGINA DELLE JAVASCRIPT

RITORNA ALLA PAGINA DELLE ALTRE JAVASCRIPT

La stringa da inserire in html

<FORM NAME="aceButton"><INPUT TYPE="BUTTON" VALUE="TORREFAZIONE NUOVA BRASILIA" onClick="self.location.href=('http://www.nuovabrasilia.com/home/torrefazione_nuova_brasilia.html')"></FORM>

BOTTONE GRIGIO CON APERTURA TUTTA PAGINA

La stringa da inserire in html

<FORM NAME="aceButton"><INPUT TYPE="BUTTON" VALUE="TORREFAZIONE NUOVA BRASILIA" onClick="top.location.href=('http://www.nuovabrasilia.com/home/torrefazione_nuova_brasilia.html')"></FORM>

BOTTONE GRIGIO CON APERTURA IN NUOVA FINESTRA

La stringa da inserire in html

<script>
<!--
/*Full screen window opener script: Written by JavaScript Kit (www.javascriptkit.com) More free scripts here*/
function winopen(){
var targeturl="http://www.nuovabrasilia.com/home/torrefazione_nuova_brasilia.html"
newwin=window.open("","","scrollbars")
if (document.all){
newwin.moveTo(0,0)
newwin.resizeTo(screen.width,screen.height)
}
newwin.location=targeturl
}
//-->
</script>
<form>
<input type="button" onClick="winopen()" value="TORREFAZIONE NUOVA BRASILIA">
</form>