How to refresh meta tag?

Started by kalmakuran, February 06, 2017, 01:23:52 AM

kalmakuran

Hy Guys,

I want to know that How to refresh meta tag?

Neha

The meta refresh tag, or meta redirect, is one way that you can reload or redirect web pages.
To do this, you would place the following meta tag within the <head> of your HTML document. When used to refresh the current page, the syntax looks like this:

<meta http-equiv="refresh" content="500">
<meta> is the HTML tag. It belongs in the head of your HTML document.
http-equiv="refresh" tells the browser that this meta tag is sending an HTTP command rather than text content. The word refresh is an HTTP header tells the web server that the page is going to be reloaded or sent somewhere else.
content="500" is the amount of time, in seconds, until the browser should reload the current page. You would change this to whatever amount of time you'd like to elapse before the page reloads.

michral86

 Meta refresh is a method of instructing a web browser to automatically refresh the current web page or frame after a given time interval, using an HTML meta element

the syntax looks like this:

<meta http-equiv="Refresh" content="30">

example is given below:
<head>
  <meta http-equiv="refresh" content="30">
</head>

I hope my answer helps you to learn meta tag.

sirishasiri

The meta refresh tag, or meta redirect, is one way that you can reload or redirect web pages. The meta refresh tag is easy to use, which means it is also easy to misuse.

Davidsmith0143

Refresh meta tag defines a time interval for the document to refresh itself. Meta refresh is a method of instructing a web browser to automatically refresh the current web page or frame after a given time interval, using an HTML meta element.

Jessicad

thanks for the information. it really helps.