El atributo HTML 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.
Usos:
Se puede usar en meta Elemento.
Sintaxis:
<meta http-equiv="content-type | default-style | refresh">
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML 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 http-equiv Attribute </h2> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo HTML http-equiv se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA