Asked by Harpreet · · 1 answer

To use a META Tag to redirect your site is quite easy. With this, use the http-equiv attribute to provide an HTTP header for the value of the content attribute.

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Meta Tag</title>
      <meta http-equiv = "refresh" content = "2; url = https://qirolab.com/" />
   </head>
   <body>
      <p>This is demo text.</p>
   </body>
</html>
0