Attributes |
Value |
Description |
http-equiv |
- ##content-type
##expires refresh set-cookie
Associate the content attribute to the HTTP header. |
|
name
|
author description keywords generator revised others
Associate the content attribute to a name. |
|
scheme
some_text |
Define the format used to translate the content attribute value. |
|
name attribute
The name attribute provides the name in a name/value pair. Neither HTML nor XHTML tags specify any predefined names. In general, you are free to use names that are meaningful to you and to readers of the source document.
"keywords" is a frequently used name. It defines a set of keywords for the document. Some search engines use these keywords to classify documents when they encounter them.
A meta tag like this may be helpful for getting indexed by search engines:
<meta name="keywords" content="HTML,ASP,PHP,SQL">
If the name attribute is not provided, the name in the name/value pair will use the value of the http-equiv attribute .
http-equiv attribute
The http-equiv attribute provides a name for a name/value pair. and instructs the server to include name/value pairs in the header of the MIME document to be sent to the browser before sending the actual document.
When the server sends a document to the browser, it first sends a number of name/value pairs. Although some servers send many of these name/value pairs, all servers send at least one: content-type:text/html. This tells the browser to prepare to accept an HTML document.
When using the tag with the http-equiv attribute, the server will add the name/value pair to the content header sent to the browser. For example, add:
<meta http-equiv="charset" content="iso-8859-1">
<meta http-equiv="expires" content="31 Dec 2008">
so that the header sent to the browser should contain:
content-type: text/html
charset:iso-8859-1
expires:31 Dec 2008
Of course, only browsers can accept these additional header fields and use them in an appropriate manner. These fields only make sense when you use them.
content property The
content property provides the value in a name/value pair. The value can be any valid string.
The content attribute should always be used together with the name attribute or the http-equiv attribute.
scheme attribute
The scheme attribute is used to specify the scheme to be used to translate the attribute value. This scheme should be defined in the profile specified by the profile attribute of the
tag.
< /head>
Sorry. We have moved. Your URL is http://www.php.cn/;/a>
You will be redirected to the new address within 5 seconds.
If it has been more than 5 seconds and you still see this message, please click the link above.
More HTML tags For related articles, please pay attention to PHP Chinese net!