El atributo HTML <meta> http-equiv se utiliza para proporcionar información de encabezado o valor del atributo de contenido. Se puede utilizar para simular una respuesta de encabezado HTTP.
Se puede usar en metaelemento.
Sintaxis:
<meta http-equiv="content-type | default-style | refresh">
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML Meta http-equiv Attribute </title> <meta name="keywords about" content="Meta Tags, Metadata" /> <meta name="description" content="Learning about Meta Tags." /> <meta name="revised about" content="GeeksforGeeks" /> <meta http-equiv="refresh" content="8" /> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h2> HTML Meta http-equiv Attribute </h2> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo HTML Meta http-equiv se enumeran a continuación:
- Google Chrome 1 y superior
- Borde 12 y superior
- Internet Explorer 6 y superior
- Firefox 1 y superior
- Ópera 12.1 y superior
- Safari 4 y superior
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA