How to Refresh Webpage every few Mins using HTML Meta Tag ?

One of the common ways to refresh webpage every few mins is by using JavaScript or HTML Meta tag.

For example , assume that you want to refresh the webpage every 1 minute . You can place the metatag in the head tag with the attributes http-equiv=”refresh” and the content attribute to 60.

How to Refresh Webpage every few Mins using HTML Meta Tag ?

<html>
  <head>

    <meta http-equiv="refresh" content="60">

  </head>

  <body>

  </body>

</html>

Note that the meta tag for refreshing the webpage is a deprecated feature as per w3c standards but the solution works on most of the Web Browsers.