Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/07/2002, 19:16
itatpc
Invitado
 
Mensajes: n/a
Puntos:
Re: Para que no salga la dirección.....

Tan fácil como usar frames. Si haces un frameset y habres todos los enlaces en el mismo frame, la dirección será siempre la del frameset.

Utiliza algo así:

Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Tu sitio</title>
</head>

<frameset rows="100%,*" border="0" frameborder="0" framespacing="0" framecolor="#000000">
<frame src="http://www.tusitio.com/pagina.html">
<frame>
<noframes>
<p> </p>
</noframes>
</frameset>

</html>
Espero que te sirva ;)