asp.net.ph

Skip Navigation LinksHome > Abakada: Back to Basics > Language References > HTML Elements > META Element

<meta> Element


Specifies information about the document for use by browsers and search engines.HTML 2, 3.2, 4, 4.01, 5

HTML Syntax

NOTE: Only the <meta> start tag must be present. The element has no end tag.

Remarks

The <meta> element is used to convey information about the document important to Web browsers and search indexing engines. The element has no effect on the appearance of the Web page.

This element can only be used within the <head> element.

meta information is usually first classified by its name, which specifies what kind of information the meta element supplies, followed by the meta content itself.

For example, a meta element can be used to provide a brief description of the page, or list the important concepts or keywords in the page.

<meta name="description"
   content="HTML elements reference.">
<meta name="keywords"
   content="HTML, elements, tags, attributes">

The meta http-equiv attribute creates an HTTP response header that can convey information to the browser about what to do with the file.

In the following example, the meta element is used to tell the browser how often to refresh the page, which is every 10 seconds.

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

This is useful for pages that display information that need to update automatically at a specified interval, like stock prices or late-breaking news.

External References

See Also

HEAD   HTML


Need a break ?
Suggested Reading

Check out related books at Amazon

© 2025 Reynald Nuñez and asp.net.ph.

If you have any question, comment or suggestion,
please send us a note