META

Description

Provides information about an HTML document to browsers, search engines, and other applications

Syntax

<META
CONTENT=description/url
HTTP-EQUIV=response
NAME=text
TITLE=text
>

Parameter

Description

CONTENT

Specifies meta-information to be associated with the given name or HTTP response header.

URL : If a URL is specifies, the URL will be loaded after the specified time has elapsed.

HTTP-EQUIV

Used to bind the CONTENT of the element to an HTTP response header. This information is then used based on the application reading the header.

NAME

Specifies the name of the control, bookmark, or application.

TITLE

Used to provide advisory information.

Example

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="description" content="This is HTML reference page.">
<meta name="keywords" content="HTML, help, referece,..."

Remarks

This element may only be used within the HEAD tag. The start tag is required, and the end tag is optional.