Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/08/2007, 10:15
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 9 meses
Puntos: 1567
Re: Para que se usan los atributos REL y REV?

No será muy académico, pero haz lo siguiente
crea un documento, en blanco si quieres con el siguiente código

Código HTML:
<!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">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>rel - rev</title>
<link rel="prev" href="base.html" title="base - document base uri" />
<link rel="next" href="meta.html" title="meta - metadata" />
<link rel="start" href="../" title="html 4 reference" />
<link rel="copyright" href="/copyright.html" title="copyright notice" />
<link rev="made" href="mailto:[email protected]" title="html 4 reference feedback" />
</head>

<body>

</body>
</html> 
Cárgalo en Opera 9 y asegurate de habilitar desde menu ver/barra de herramientas la barra de navegación y verás.

para más detalles sobre los atributos y tipos de vínculos (hay unos cuantos más) visita
http://html.conclase.net/w3c/html401...tml#type-links

Saludos