HTML | <cuerpo> atributo vlink

El atributo HTML <body> vlink se utiliza para especificar el color de un enlace visitado en un documento.

Nota: HTML5 no admite el atributo vlink <body> de HTML. En lugar de usar este atributo, podemos usar CSS: selector de pseudoclase visitado.

Sintaxis:

<body vlink="color_name | hex_number | rgb_number">

Valores de atributos:

  • color_name: Especifica el nombre del color del enlace visitado.
  • hex_number: Especifica el color del enlace visitado en términos de código hexadecimal.
  • rgb_number: especifica el color del enlace visitado en términos de valor rgb

Ejemplo:

html

<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML body vlink Attribute
    </title>
</head>
  
<!-- body tag starts here -->
<body vlink="red">
    <center>
        <h1>GeeksforGeeks</h1>
        <h2>HTML <body> vlink Attribute</h2>
          
        <p>Click on a Below link</p>
          
        <a href="#">
            It is a Computer Science portal For Geeks
        </a>
        <br>
          
        <p><a href="#">GeeksForGeeks</a></p>
    </center>
</body>
<!-- body tag ends here -->
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con <body> vlink Attribute se enumeran a continuación:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Safari
  • Ópera

Publicación traducida automáticamente

Artículo escrito por hritikbhatnagar2182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *