answersLogoWhite

0


Best Answer

A meta refresh is something coded into the html of a website. It forces the current web page to automatically refresh after a given amount of time as specified in the code.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the definition of a meta refresh?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you refresh a JSP page?

by using the meta tag <meta HTTP-EQUIV="Refresh" CONTENT="5(duration in sec)">


How do you refresh a jsp page automatically?

by using the meta tag <meta HTTP-EQUIV="Refresh" CONTENT="5(duration in sec)">


How do you get auto refresh on a webpage?

The easiest way to make auto refresh on a webpage is using of meta refresh:"5" is a refresh interval in seconds.Put it in between and tags.


How can you make a webpage automatically redirect?

Using a Meta Refresh. Place this on your page.


How do you make the page you are on refresh when you click a link that opens in a new page or tab when writing the HTML for the link?

To reload the Current Page, use the Meta Refresh Tag in the of your HTML document.EXAMPLE: = HTML tag.http-equiv="refresh" = Attribute tells the browser this meta tag is sending an HTTP command instead of a standard meta tag. Refresh is an HTTP header used by a Web server. The header tells the server the page is going to be reloaded or sent somewhere else.content="2" = Amount of time, in seconds, the browser should wait to reload the current page.


Can you redirect to a different site using HTML?

*answers my own old question* Yes you can. with this handy gadget. the META tag! *angels sing in background* <meta http-equiv="Refresh" content="0;url=URL HERE">


What is the REFRESH meta tag used for?

By using this tag you are able to define after how long a page has to be refreshed or after a certain period of seconds you want your visitor to be redirected to another webpage. Search engines usually don't like it when you use refresh pages. A better solution is to add a click able link.An example of a refresh value is:This refresh-tag will redirect you to another webpage automaticly.


What is the definition and process of cooling?

of Cool, Adapted to cool and refresh; allaying heat.


What does high definition mean?

Any displayed image with a resolution or refresh rate greater than 480i is classified as high definition.


What is the definition of the refresh key?

The refresh key does exactly what it says, it refreshes. IF you are on the internet, it reloads the page I if you are on your desktop, it reloads the desktop image and all of your Icons and processors. If you are anywhere, It will reload whatever you are doing


In an HTML form I have a button which makes us to open another page in 15 seconds How will you do this?

script language="javascript" type="text/jscript">function metatime(btn){setTimeout ("window.location.href='URL HERE';" , 15000 );btn.value="wait 15 sec..";}


Is meta tags having closing tags?

Meta tags do not have closing tags in HTML. The following is perfectly valid HTML: <meta http-equiv="content-language" content="en"> When you get into XHTML, you'll need to close the tag but by definition meta tags are self-closing. So the correct way to close the meta tag would be by adding a forward slash just before the closing bracket, like so: <meta http-equiv="content-language" content="en" />