Home > Article > Web Front-end > Detailed explanation of HTML tag
All browsers support the e8e496c15ba93d81f6ea4fe5f55a2244 tag.
e8e496c15ba93d81f6ea4fe5f55a2244 element can provide meta-information about the page, such as description and keywords for search engines and update frequency. The
e8e496c15ba93d81f6ea4fe5f55a2244 tag is located at the head of the document and does not contain any content. The e8e496c15ba93d81f6ea4fe5f55a2244 tag's properties define the name/value pairs associated with the document.
In HTML, the e8e496c15ba93d81f6ea4fe5f55a2244 tag does not have a closing tag.
In XHTML, the e8e496c15ba93d81f6ea4fe5f55a2244 tag must be closed properly.
Note: The e8e496c15ba93d81f6ea4fe5f55a2244 tag is always located inside the head element.
Note: Metadata is always passed in name/value pairs.
Attributes | Value | Description |
---|---|---|
content | some_text | Define meta-information related to the http-equiv or name attribute |
Attributes | Value | Description |
---|---|---|
http-equiv |
|
Associate the content attribute to the HTTP header. |
name |
|
Associate the content attribute to a name. |
scheme | some_text | Define the format used to translate the content attribute value. |
The name attribute provides the name in a name/value pair. Neither HTML nor XHTML tags specify any predefined e8e496c15ba93d81f6ea4fe5f55a2244 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 .
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 e8e496c15ba93d81f6ea4fe5f55a2244 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.
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.
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 93f0f5c25f18dab9d176bd4f6de5d30e tag.
Redirect This example demonstrates: redirecting the user to another address when the URL has changed.
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <meta http-equiv="Refresh" content="5;url=http://www.w3school.com.cn" /> </head> <body> <p> 对不起。我们已经搬家了。您的 URL 是 <a href="http://www.w3school.com.cn">http://www.w3school.com.cn</a> </p> <p>您将在 5 秒内被重定向到新的地址。</p> <p>如果超过 5 秒后您仍然看到本消息,请点击上面的链接。</p> </body> </html>
The above is the detailed content of Detailed explanation of HTML tag. For more information, please follow other related articles on the PHP Chinese website!