Trucos en código HTML para sitios web

Trucos en HTML para sitios web

Trucos en código HTML para sitios web

Abrir un link en una ventana nueva:

<a href="http://www.visocym.com" target="_blank">VISO Comunicacion y Mercadotecnia</a>

Crear formulario de visita:

<H2>Libro de visitas de www.visocym.com</H2>

<FORM ACTION="mailto:tunombre@tudominio.com" METHOD="post">

 

<TABLE>

 

<TD ALIGN=RIGHT>Nombre:</TD>

<TD><INPUT type="text" size=36 name="nombre"></TD>

<TR><TD ALIGN=RIGHT>Direccion E-mail:</TD>

<TD><INPUT type="text" size=36 name="direccion"></TD>

<TR><TD ALIGN=RIGHT>como llegaste hasta esta página?</TD>

<TD><INPUT type="text" size=36 name="procedencia"></TD>

<TR><TD ALIGN=RIGHT>Tus comentarios:</TD>

<TD><TEXTAREA rows=5 cols=30 name="comentarios"></TEXTAREA></TD>

 

</TABLE>

 

<INPUT type="reset" value="Borrar todo"> <INPUT type="submit" value="Enviar">

 

</FORM>

Enviar un email con asunto y mensaje:

<a href="mailto:info@visocym.com?subject=Prueba.&body=email de prueba...">click aquí para enviar un mensaje</a>

Redireccionar una página:

<html>

<head>

<title>Redireccionado por www.visocym.com</TITLE>

<script language="JavaScript">

location.href='http://www.visocym.com';

</script>

</head>

<body>

Abrir una web en pop up:

<script language='JavaScript'>window.open('http://www.visocym.com', 'geoflotante', '');</script>

No permitir seleccionar el texto:

<script language="Javascript">

<!-- Begin

function disableselect(e){

return false

}

function reEnable(){

return true

}

document.onselectstart=new Function ("return false")

if (window.sidebar){

document.onmousedown=disableselect

document.onclick=reEnable

}

// End -->

</script>

Establecer página de inicio:

<A class=chlnk style="FONT-WEIGHT: bold; CURSOR: hand; 

COLOR: #004080; FONT-FAMILY: Verdana" onclick=

"this.style.behavior='url(#default#homepage)';

this.setHomePage('http://www.visocym.com');">

<FONT face=Arial color=#000000 size=-2><U>

Establecer como página de inicio</U></FONT></A>

Horario en cuenta regresiva:

<body>

<p>El reloj...</p>

<form name="Reloj">

<input type="text" size="7" name="tiempo" value="mm:hh:ss" title="Tiempo restante para finalizar el día">

<script language="JavaScript">

<!--

var tiempoAtras;


updateReloj();

function updateReloj() {

var tiempo = new Date();

var hora = 23-tiempo.getHours();

var minutos = 59-tiempo.getMinutes();

var segundos = 59-tiempo.getSeconds();


tiempoAtras= (hora < 10) ? hora :hora;

tiempoAtras+= ((minutos < 10) ? ":0" : ":") + minutos;

tiempoAtras+= ((segundos < 10) ? ":0" : ":") + segundos;


document.Reloj.tiempo.value = tiempoAtras;


setTimeout("updateReloj()",1000);

}

//-->

</script>

</form>

</body>

Recomendar página:

<form name="eMailer">

Recomendar página a un amigo

<br>

Indica su e-mail:

<br>

<input type="text" name="address" size="25">

<br>

<input type="button" value="Recomendá esta Web!" onClick="mailThisUrl();">

</form>

<script language="JavaScript1.2">

var good;

function checkEmailAddress(field) {

// the following expression must be all on one line...

var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|

(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);

if (goodEmail){

good = true

} else {

alert('Por favor introduce un e-mail valido')

field.focus()

field.select()

good = false

}

}

u = window.location;

m = "Hecha un vistazo a esta página...";

function mailThisUrl(){

good = false

checkEmailAddress(document.eMailer.address)

if (good){

// the following expression must be all on one line...

window.location = "mailto:"+document.eMailer.address.value+"?subject="+m+"&body="+document.title+" "+u;

}

}

</script>

Insertar sonido en página web:

<BGSOUND SRC="sonido.mid" LOOP=none> 

<WIDTH=200 HEIGHT=55 AUTOSTART="true" LOOP="false" HIDDEN="true">

Link download:

<a href="ejemplo.exe">Click aquí para descargar </a>

No permitir copia de página web:

<Script language=JavaScript>

function right(e) {

if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){

alert("Coloca el mensaje aquí.");

return false;

}

else if (navigator.appName == 'Microsoft Internet Explorer' &&

(event.button == 2 || event.button == 3)) {

alert("Coloca el mensaje aquí.");

return false;

}

return true;

}

document.onmousedown=right;

if (document.layers) window.captureEvents(Event.MOUSEDOWN);

window.onmousedown=right;

</script>

Escribir comentario

Comentarios: 0