We specify keywords which will be used by the search engine to search a web page. So using following tag you can specify important keywords related to your page.
Document Description:<head><meta name="keywords" content="HTML, meta tags, metadata" /></head>
This is again important information and many search engine use this information as well while searching a web page. So we should give an appropriate description of the page.
<head>Document Revision date:
<meta name="description" content="Learn about Meta Tags." />
</head>
This information tells about last time the document was updated.
<head>Document Refreshing:
<meta name="revised" content="HTML Tutorials, 14/10/2013" />
</head>
We can specify a duration after which your web page will keep refreshing. If we want our page keep refreshing after every 10 seconds then use the following syntax.
<head>Page Redirection:
<meta http-equiv="refresh" content="10" />
</head>
We can specify a page redirection using Meta Tag. Following is an example of redirecting current page to another page. We can specify a duration after which page will be redirected.
<head>If we don't provide a duration then page will be redirected immediately.
<meta http-equiv="refresh" content="10; url=http://learnhtmlandcssonline.blogspot.com" />
</head>

No comments:
Post a Comment