Open In App
Related Articles

HTML | <meta> http-equiv Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML <meta> http-equiv Attribute is used to provide header information or value of the content Attribute. It can be used to simulate an HTTP Header response. 
It can be used in meta Element.
Syntax:

<meta http-equiv="content-type | default-style | refresh">

Example: 
 

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>                      


Output: 
 

Supported Browsers: The browser supported by HTML Meta http-equiv attribute are listed below: 
 

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer 6 and above
  • Firefox 1 and above
  • Opera 12.1 and above
  • Safari 4 and above

 

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 06 Jun, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials