scripts html 4
buscador google para tu web
codigo
<!-- Búsqueda Google -->
<center>
<FORM method=GET action="http://www.google.com/search">
<TABLE bgcolor="#FFFFFF"><tr><td>
<A HREF="http://www.google.com/">
<IMG SRC="http://www.google.com/logos/Logo_40wht.gif" border="0" ALT="Google" align="absmiddle"></A>
<INPUT TYPE=text name=q size=31 maxlength=255 value="">
<INPUT TYPE=hidden name=hl value=es>
<INPUT type=submit name=btnG VALUE="Búsqueda Google">
</td></tr></TABLE>
</FORM>
</center>
<!-- Búsqueda Google -->
fecha de hoy
codigo
<html>
<head>
<title>Calendario con el dia de hoy</title>
</head>
<body>
<script languaje="JavaScript">
mesarray=new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio","Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
diaarray=new Array( "Domingo","Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado");
hoy = new Date();
dias = hoy.getDate();
dia = hoy.getDay();
mes = hoy.getMonth();
mes=mesarray[mes];
dia =diaarray[dia];
anno = hoy.getYear();
if (anno <200)
anno = anno+1900;
document.write('<TABLE WIDTH="60" height="60" BORDER="2" BGCOLOR="#FFFFFF"><TR><TD><CENTER>');
document.write('<FONT SIZE="2" COLOR="#000000"> <B>'+mes+'</B></FONT><br>');
document.write('<FONT SIZE="1" COLOR="#000000">'+anno+'</FONT><br>');
document.write('<FONT SIZE="4" COLOR="#000000" FACE="Arial"><B>'+dias+'</B></FONT><br>');
document.write('<FONT SIZE="1" COLOR="#000000">'+dia+'</FONT><br>');
document.write('</CENTER></TR></TD></TABLE>');
</script>
</body>
</html>
codigo
<html>
<head>
<title>Calendario con el dia de hoy</title>
</head>
<body>
<script languaje="JavaScript">
mesarray=new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio","Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
diaarray=new Array( "Domingo","Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado");
hoy = new Date();
dias = hoy.getDate();
dia = hoy.getDay();
mes = hoy.getMonth();
mes=mesarray[mes];
dia =diaarray[dia];
anno = hoy.getYear();
if (anno <200)
anno = anno+1900;
document.write('<TABLE WIDTH="60" height="60" BORDER="2" BGCOLOR="#FFFFFF"><TR><TD><CENTER>');
document.write('<FONT SIZE="2" COLOR="#000000"> <B>'+mes+'</B></FONT><br>');
document.write('<FONT SIZE="1" COLOR="#000000">'+anno+'</FONT><br>');
document.write('<FONT SIZE="4" COLOR="#000000" FACE="Arial"><B>'+dias+'</B></FONT><br>');
document.write('<FONT SIZE="1" COLOR="#000000">'+dia+'</FONT><br>');
document.write('</CENTER></TR></TD></TABLE>');
</script>
</body>
</html>
HOBIE
codigo
<html>
<head>
<title>Te penelaiza con por pulsar el boton derecho</title>
<script language="Javascript">
zaehler=0;
function right(e) {
if (navigator.appName == 'Netscape'){
if (e.which == 3 || e.which == 2){
alert("Aqui no puedes utilizar el botón derecho del mouse");
for(i=0;i!=zaehler;i++)alert("Ya te avisé, te penalizaré con n "+(zaehler-i)+"n clicks.");
zaehler+=10;
alert("¡La proxima vez que lo hagas será peor! ");
return false;}}
if (navigator.appName == 'Microsoft Internet Explorer'){
if (event.button == 2 || event.button == 3){
alert("Aqui no puedes utilizar el botón derecho del mouse");
for(i=0;i!=zaehler;i++)alert("Ya te avisé, te penalizaré con n "+(zaehler-i)+"n clicks.");
zaehler+=10;
alert("¡La proxima vez que lo hagas será peor! ");
return false;}}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
</script>
</head>
<body>
Te penaliza con click al usar el boton derecho
</body>
</html>
codigo
<HTML>
<HEAD>
<TITLE>Ultima actualizacion de la página</TITLE>
</HEAD>
<body>
<center>
<SCRIPT LANGUAGE="JavaScript">
function initArray()
{
this.length = initArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i+1] = initArray.arguments[i]
}
var vDias = new initArray("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado");
var vMeses = new initArray("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
var LastModDate = new Date(document.lastModified);
document.write("Esta página fue actualizada por última vez, el ");
document.write(vDias[(LastModDate.getDay()+1)]," ");
document.write(LastModDate.getDate()," de ");
document.write(vMeses[(LastModDate.getMonth()+1)],", de ",(LastModDate.getYear()));
document.write(".");
</SCRIPT>
</center>
</body>
</html>
<HTML>
<HEAD>
<TITLE>Ultima actualizacion de la página</TITLE>
</HEAD>
<body>
<center>
<SCRIPT LANGUAGE="JavaScript">
function initArray()
{
this.length = initArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i+1] = initArray.arguments[i]
}
var vDias = new initArray("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado");
var vMeses = new initArray("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
var LastModDate = new Date(document.lastModified);
document.write("Esta página fue actualizada por última vez, el ");
document.write(vDias[(LastModDate.getDay()+1)]," ");
document.write(LastModDate.getDate()," de ");
document.write(vMeses[(LastModDate.getMonth()+1)],", de ",(LastModDate.getYear()));
document.write(".");
</SCRIPT>
</center>
</body>
</html>
HOBIE