.. - Codigos HTML y Javascript
  Mys Ripzz
  Tv Japon
  Documentales
  Juegos de pc
  Lost
  it crowd
  ONCE UPON A TIME
  Recursos Para tu web
  Codigos HTML y Javascript
  Plantillas
  Lost Online
  Utilidades
  it crowd download
  TV online
  Teorias de lost
  Libro de Visitas
  TV Paises Latinos
  Resultados Basquet
  Tv Azteca y Esmas
  Futbol Resultados
  Tenis en vivo
  • Por si hay algún error en la página

    <SCRIPT language=JavaScript>  function blockError(){return true;} window.onerror = blockError; </SCRIPT> 

    -Centrar Tu Web

    <center>  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http:/www.w3.org/1999/xhtml"> <div style="width:900px; position: relative; margin-left: auto; margin-right: auto;">

    -Terremoto (que la pantalla tiemble y se mueva)

    <!-- para llamarlo con un bot&oacute;n--> <INPUT onclick=shake(40) type=button value=""Terremoto""> <SCRIPT language=JavaScript1.2> <!-- Begin function shake(n) { if (n==1)  {document.body.bgColor = "#0000DA";  } else  {document.body.bgColor = "#FF8C00"  }  if (self.moveBy) { for (i = 15; i > 0; i--) { for (j = n; j > 0; j--) { self.moveBy(0,i); self.moveBy(i,0); self.moveBy(0,-i); self.moveBy(-i,0);          }       }    }   } // End --> </SCRIPT>

    • Punto de mira que ocupa toda la pantalla (color verde)

    • Para que el cursor sea un punto de mira (en pequeñito)

    • Te dice el dia, mes y año del PC

    • Cerrar la ventana al cabo de X rato

    • Botón Cerrar Ventana (también windows.self.close())

    • Botón Atrás, Actualizar y Adelante

    • Cambiar el puntero por uno personalizado:

    • Cambiar el puntero:



    ALGUNOS CODIGOS PARA TEXTOS

    NEGRITA

    <b>TEXTO</b>

    SUBRAYADO

    <i>TEXTO</i>

    CURSIVA

    <u>TEXTO</u>

    CAMBIAR EL TAMANO DE LETRA

    <font size="7">EL NÚMERO 7 DEFINE EL TAMAÑO DE LA FUENTE</font>

    CAMBIAR EL TIPO DE LETRA

    <font face="Times New Roman">PUEDES CAMBIAR "TIMES NEW ROMAN" POR "VERDANA" POR EJEMPLO</font>

    CAMBIAR COLOR DE LETRA

    font color="#FF0000">A LOS CODIGOS DE LOS COLORES LOS SACAS EN LA SECCIÓN DE TABLA DE COLORES</font>

    UN ENTER

    <br />

    INSERTAR UN LINK

    <a href="AQUÍ COLOCA LA URL DE DESTINO">Y AQUí LA PALABRA</a>

    INSERTAR UNA IMAGEN

    <img src="AQUÍ COLOCA LA URL DE LA IMAGEN">

    IMAGEN DE FONDO

    <body background="AQUÍ COLOCA LA URL DE FONDO">

    INSERTAR UN ARCHIVO FLASH

    <embed src="AQUÍ COLOCA LA URL DEL ARCHIVO .SWF" width="500" height="130" scale="ShowAll" play="true" loop="true" menu="true" wmode="Window" quality="1" type="application/x-shockwave-flash"></embed>

    UNA WEB DENTRO DE OTRA

    <iframe name="window" src="URL DE LA WEB" width="565" height="900" marginwidth="0" scrolling="yes" frameborder="0"></iframe>

    PONER CAJA CON CODIGO ADENTRO

    <textarea rows="5" cols="10">
    Código
    </textarea>

    SONIDO O MUSICA DE FONDO

    <BGSOUND SRC="sonido.mid" LOOP=none>
    <WIDTH=200 HEIGHT=55 AUTOSTART="true" LOOP="false" HIDDEN="true">

    LINEA SEPARADORA

    <hr>

    ESTABLECER COMO PAGINA 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.CheNico.com');">
    <FONT face=Arial color=#000000 size=-2><U>
    Esta parte del texto se puede modificar en el código</U></FONT></A>

    CENTRAR LA WEB

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http:/www.w3.org/1999/xhtml">
    <div style="width:900px; position: relative; margin-left: auto; margin-right: auto;">

    LECCION COMPLETA DE MARQUESINA

    Atras - Actualizar - Adelante

    <input type="button" value="Atrás" onclick="history.back()" style="font-family: Verdana; font-size: 8 pt">
    <input type="button" value="Actualizar" onclick="window.location.reload()" style="font-family: Verdana; font-size: 8 pt">
    <input type="button" value="Adelante" onclick="history.forward()" style="font-family: Verdana; font-size: 8 pt">

    WELCOME QUE ESTA EN INICIO

    Con link:

    <a href="Dirección de tu sitio"><img src="https://img.webme.com/pic/c/chatroh/8484484848484.gif" alt="Welcome" width="300" height="100" border="0" /></a>

    Sin link:

    img src="https://img.webme.com/pic/c/chatroh/8484484848484.gif" alt="Welcome" width="300" height="100" border="0" />

    CAJA DE CODIGO CON BOTON COPIAR

    <span id="Caja1" class="Caja1">Haga click dentro de la caja de texto para copiar su contenido<br />
    </span> <textarea onclick="copyCaja1(document.getElementById('code1'));return false;" rows="3" cols="16" id="code1">EL TEXTO O CÓDIGO QUE DESEE QUE APAREZCA DENTRO DE LA CAJITA Nº1</textarea> <script>
    function copyCaja1(elt) {
    var urlSwf = "copy.swf";
    var flash = document.getElementById("C1");
    var divinfo = '<embed src="http://www.mygirlyspace.com/' + urlSwf + '" name="copy_swf" FlashVars="clipboard='+escape(elt.value)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
    flash.innerHTML = divinfo;
    elt.focus();
    elt.select();
    document.getElementById("Caja1").innerHTML = "¡El texto ha sido copiado!<br/>";
    return true;
    }
    </script>
    <div id="C1">&nbsp;</div>

    pd. Si quieres colocar más de una caja en una sola página, escribe el mismo código reemplazando los 1
    por 2

    PROBADOR DE HTML


    <script>
    function probar(texto) {
     ventana = window.open('', 'popup', '');
     ventana.document.write(texto);
    }
    </script>
    <form action="" name="probador">
        <font face="Verdana" size="2">Esto es un probador de c&oacute;digos, inserta el c&oacute;digo HTML y te dar&aacute; el resultado en una ventana nueva!<hr />
        </font><textarea rows="10" cols="50" name="texto"></textarea><font face="Verdana" size="2"> <br />
        </font><input type="button" onclick="probar(texto.value)" value="Convertir" /><font face="Verdana" size="2"> </font>
    </form>

    TABLA DE COLORES EN TU WEB

    <iframe name="window" src="http://paneles.impresionesweb.com/webmasters/colores.htm" width="500" height="350" marginwidth="0" scrolling="yes" frameborder="0"></iframe>

Este sitio web fue creado de forma gratuita con PaginaWebGratis.es. ¿Quieres también tu sitio web propio?
Registrarse gratis