hacker


Ingresar con nombre de usuario, contraseña y duración de la sesión
| Portal Hacker | Editorial | Descargas | Ezine |
Inicio Ayuda Ingresar Registrarse
12 de Octubre de 2008, 10:44:12
Noticias: Nomina a tus preferidos para los pOrtal Hacker Awards 2008
Para ver este enlace Registrate o Inicia Sesion
aqui

+  Foros pOrtal Hacker
|-+  Programacion
| |-+  Desarrollo Web
| | |-+  Html (Moderadores: Big-Peru_, TxShAcK)
| | | |-+  Manual Codigos HTML (Por JV3-TSW)
0 Usuarios y 1 Visitante están viendo este tema. « anterior próximo »
Páginas: 1 2 3 Ir Abajo Imprimir
Autor Tema: Manual Codigos HTML (Por JV3-TSW)  (Leído 3538 veces)
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« : 31 de Enero de 2008, 11:29:06 »


Para ver este enlace Registrate o Inicia Sesion
AQUI TODOS MIS CODIGOS!!!!!!!!!!!!
« Última modificación: 25 de Agosto de 2008, 06:11:43 por JV3-TSW » En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #1 : 31 de Enero de 2008, 11:33:04 »

Codigo 2: Redireccionami ento

Código:
<meta http-equiv="refresh" content="3;URL=http://foro.portalhacker.net">
« Última modificación: 31 de Enero de 2008, 11:37:41 por JV3-TSW » En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #2 : 31 de Enero de 2008, 11:40:33 »

Codigo 3: Link que añade la pagina a Favoritos

Código:
<a href="javascript:window.external.AddFavorite('http://foro.portalhacker.net','CPH Hacking and Security');">Agregar a favoritos</a>
En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #3 : 31 de Enero de 2008, 11:43:26 »

Codigo 4: Meta-Tags

Código:
<META name="description" content="Frases Clave">
<META name="keywords" content="Palabras Clave">
<META name="language" content="Lenguaje">
<META name="revisit-after" content="Auto Revisar (predefinido= 1 month">
<META name="rating" content="General">
<META name="author" content="El Autor">
<META name="owner" content="El Dueño">
En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #4 : 31 de Enero de 2008, 11:46:21 »

Codigo 5: Link que hace la pagina en Home Page

Código:
<a href="http://foro.portalhacker.net#" class="chlnk" onclick="this.style.behavior='url(#default#homepage)';
this.setHomePage('http://foro.portalhacker.net');"
style="cursor: hand">Página de inicio</a>
En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #5 : 31 de Enero de 2008, 11:50:11 »

Codigo 6: Calendario que se actualiza cada Dia

Código:
<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>
En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
Big-Peru_
Moderador
*****
Desconectado Desconectado

Mensajes: 290


Big-Peru_


Ver Perfil WWW
« Respuesta #6 : 31 de Enero de 2008, 05:10:24 »

Gran aporte Men son de mucha utilidad, saludos
En línea


Para ver este enlace Registrate o Inicia Sesion
http://big-peru.webcindario.com/


Para ver este enlace Registrate o Inicia Sesion
http://big-peru.blogspot.com/
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #7 : 01 de Febrero de 2008, 01:34:38 »

Codigo 7: Mensaje de alerta al entrar

Head:
Código:
<script language="JavaScript">
<!--

function SymError()
{
  return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
  return (new Object());
}

window.open = SymWinOpen;

//-->
</script>

Body:
Código:
<body onLoad="var SymTmpWinOpen = window.open; window.open = SymWinOpen; alert('Bienvenido a Portal Hacker'); window.open = SymTmpWinOpen;">
En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #8 : 01 de Febrero de 2008, 01:55:37 »

Codigo 8: Tabla de Colores en tu Web

Head:
Código:
<script language="javascript" type="text/javascript">   
   
function decimal_a_hex(numero) {   
    if (numero == null)   
        return "00" 
       
    numero = parseInt(numero)   
       
    if (isNaN(numero))   
        return "00" 
    else if (numero <= 0 )   
        return "00" 
    else if (numero > 255)   
        return "FF" 
 
    numero = Math.round(numero)   
       
    return "0123456789ABCDEF".charAt((numero - numero % 16)/16) + "0123456789ABCDEF".charAt(numero % 16)   
}   
 
function tablaColores() {   
    var r, g, b, color   
       
    document.write( '<table cellspacing="0" cellpadding="2" border="0">' )       
       
    columna = 0   
    for ( r = 0; r <= 255; r = r + 30) {   
        for ( g = 0; g <= 255; g = g + 30) {   
            document.write( '<tr>' )   
            for ( b = 0; b <= 255; b = b + 30) {   
                color = decimal_a_hex(r) + decimal_a_hex(g) + decimal_a_hex(b)   
                document.write( "<td style='background-color: #" + color + ";'><small>" + color + "</small></td>" )   
            }   
            document.write( '</tr>' )   
        }   
    }   
       
    document.write( '</table>' )     
}   
     
</script> 

Body:
Código:
<div align="center"> 
<script language="javascript" type="text/javascript"> 
<!--   
tablaColores()   
//--> 
</script> 
</div>
En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #9 : 01 de Febrero de 2008, 02:07:01 »

Codigo 9: Imagen-Link que cambia al apuntarla

Head:
Código:
<script language="javascript" type="text/javascript">     
function CompruebaVersion() {   
    if (navigator.appVersion.charAt(0) >= 3 && document.images) return true   
    else return false   
}   
 
function CreaArray(n) {   
    this.length = n   
    for (var i = 1; i<=n; i++) {   
        this[i] = new Image()   
    }   
    return this 
}   
 
if (CompruebaVersion()) { 
    img_off = new CreaArray(2)   
    img_on = new CreaArray(2)   
       
 
    img_off[1].src = "/images/llaves_off.gif" 
   
    img_on[1].src = "/images/llaves_on.gif" 
}   
 
function msover(num) {   
    if (CompruebaVersion()) {   
        if (img_on[num].src != "") {   
            document.images["efecto"].src = img_on[num].src;   
        }   
    }   
}   
 
function msout(num) {   
    if (CompruebaVersion()) {   
        if (img_off[num].src != "") {   
            document.images["efecto"].src = img_off[num].src;             
        }   
    }                     
}   
   
</script> 

Body:
Código:
<p align="center"><a href="http://foro.portalhacker.net" onMouseOut="msout(1)" onMouseOver="msover(1)" target="_blank"><img src="AQUI VA LA IMAGEN 1" width="60" height="60" alt="Portal Hacker" name="efecto" border="0"></a></p> 

<p align="center"><a href="http://foro.portalhacker.net" onMouseOut="msout(1)" onMouseOver="msover(1)" target="_blank"><img src="AQUI VA LA IMAGEN 2" width="60" height="60" alt="Portal Hacker" name="efecto" border="0"></a></p>
En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #10 : 01 de Febrero de 2008, 02:17:02 »

Codigo 10: Visor de Imagenes

Head:
Código:
<script language="javascript" type="text/javascript">   
     
var retardo_rotacion = 1000   
actual = 0   
 
function siguiente() {   
    if (document.formulario.imagen[actual+1]) {   
        document.images.visor.src = document.formulario.imagen[actual+1].value 
        document.formulario.imagen.selectedIndex = ++actual   
    }   
    else ir_inicio()   
}   
 
function anterior() {   
    if (actual-1 >= 0) {   
        document.images.visor.src = document.formulario.imagen[actual-1].value 
        document.formulario.imagen.selectedIndex = --actual   
    }   
    else ultimo()   
}   
 
function ir_inicio() {   
    actual = 0   
    document.images.visor.src = document.formulario.imagen[0].value 
    document.formulario.imagen.selectedIndex = 0   
}   
     
function ultimo() {   
    actual = document.formulario.imagen.length-1   
    document.images.visor.src = document.formulario.imagen[actual].value 
    document.formulario.imagen.selectedIndex = actual   
}   
   
function repAuto(text) {   
    document.formulario.automatico.value = (text == "Detener") ? "Reproducir" : "Detener" 
    reproducir()   
}   
 
 
function cambiaLista() {   
    actual = document.formulario.imagen.selectedIndex 
    document.images.visor.src = document.formulario.imagen[actual].value 
}   
   
function reproducir() {   
    if (document.formulario.automatico.value == "Detener") {   
        actual = (actual == document.formulario.imagen.length-1) ? 0 : actual+1   
        document.images.visor.src = document.formulario.imagen[actual].value 
        document.formulario.imagen.selectedIndex = actual   
        window.setTimeout("reproducir()", retardo_rotacion)   
    }   
}   
   
</script> 

Body:
Código:
<div align="center"> 
<form name="formulario"> 
<table cellspacing="1" cellpadding="4" bgcolor="#000000"> 
<tr> 
<td align="center" bgcolor="white"> 
<b>Visor de imágenes</b> 
</td> 
</tr> 
<tr> 
<td align="center" bgcolor="white"> 
<img src="FOTO DEL VISOR-FOTO 1" name="visor"> 
</td> 
</tr> 
<tr> 
<td align="center" bgcolor="#C0C0C0"> 
<select name="imagen" onChange="cambiaLista();"> 
<option value="IMAGEN 1" selected>Primera imagen   
<option value="IMAGEN 2">Segunda imagen   
<option value="IMAGEN 3">Tercera imagen   
<option value="IMGEN 4">Cuarta imagen   
</select> 
</td> 
</tr> 
<tr> 
<td align="center" bgcolor="#C0C0C0"> 
<input type="button" onClick="ir_inicio();" value="|<<" title="Inicio"> 
<input type="button" onClick="anterior();" value="<<" title="Anterior"> 
<input type="button" name="automatico" onClick="repAuto(this.value);" value="Reproducir" title="Reproducción automática"> 
<input type="button" onClick="siguiente();" value=">>" title="Siguiente"> 
<input type="button" onClick="ultimo();" value=">>|" title="Ultimo"> 
</td> 
</tr> 
</table> 
</form> 
</div>
En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #11 : 01 de Febrero de 2008, 04:10:59 »

Pronto pondre un menu para llegar mas rapido a los codigos...
En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #12 : 01 de Febrero de 2008, 04:37:42 »

Acabo de poner el menu, esta en el primer Post de este tema, espero que les guste el manual de codigos HTML, si hay varias lecturas y respuestas, seguire poniendo muchos codigos mas.

 Saludos tmbn Big Peru  Grin Grin Grin
« Última modificación: 01 de Febrero de 2008, 09:38:47 por JV3-TSW » En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
JV3-TSW
Recien llegado
*
Desconectado Desconectado

Mensajes: 24

"I Wait And Bleed..."


Ver Perfil WWW
« Respuesta #13 : 02 de Febrero de 2008, 09:13:17 »

Si quieren puedes pedirme algun codigo en especial, envienmeun mnsaje privado y les contestare (si estoy conectado)
En línea

I never wanted anybody more, then i wanted you!

The only thing i ever really loved, was hurting you...
Big-Peru_
Moderador
*****
Desconectado Desconectado

Mensajes: 290


Big-Peru_


Ver Perfil WWW
« Respuesta #14 : 02 de Febrero de 2008, 11:21:25 »

Y ok gracias por tu ayuda y tambien por la amabilidad de ofrecerme codigos yo te envio un privado si quiero uno, por lo del menu no te hubieras preocupado en ellos, si agregas mas codigos "Pego el tema" y asunto arreglado...
ademas puedo hacer mas cosas para que no se salga de tus manos el tema, porque muchas veces hay usuarios deforman el post inicial... cuando quieras me mandas un privado y nos ponemos de acuerdo en si gustas arreglar tus post en este subforo, saludos  JV3-TSW
En línea


Para ver este enlace Registrate o Inicia Sesion
http://big-peru.webcindario.com/


Para ver este enlace Registrate o Inicia Sesion
http://big-peru.blogspot.com/
Páginas: 1 2 3 Ir Arriba Imprimir 
« anterior próximo »
Ir a:  


Ingresar con nombre de usuario, contraseña y duración de la sesión

Powered by SMF 1.1.6 | SMF © 2006-2008, Simple Machines LLC hacker

Juegos gratis - Articulos PHP - Juegos - Trucos - Letras - Juegos - Juegos Online