Showing posts with label Meta Tag. Show all posts
Showing posts with label Meta Tag. Show all posts

Tuesday, June 27, 2017

How to refresh webpage using meta tag to another webpage



Meta Tag Sample Program to refresh webpage and redirect to 
targeted webpage


<! DOCTYPE HTML>
<html>
   <head>
      <title>
         Meta tag 
      </title>
<meta http-equiv="refresh" content="7;url=D:\ASPDoTNet Practical\a.html">
   </head>
   <body>
      hello world
   </body>
</html>


Explanation
Here in this html code meta tag refresh web page in 7 second 
and redirect to a.html page.