Home  >  Article  >  Web Front-end  >  About the role of meta in html

About the role of meta in html

高洛峰
高洛峰Original
2017-03-01 14:47:081654browse

The

element provides meta-information about the page, such as description and keywords for search engines and update frequency. The

tag is located at the head of the document and does not contain any content. The tag's properties define the name/value pairs associated with the document.

Differences between HTML and XHTML

In HTML, the tag does not have a closing tag.

In XHTML, the tag must be closed properly.

Tips and Notes:

Note: The tag is always located inside the head element.

Note: Metadata is always passed in name/value pairs.

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.

Meta tags like this may be helpful for entering the search engine index:

##http-equiv attribute
http-equiv attribute is name/ The value pair provides the name. 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.


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.

meta is used to simulate the response header message of the HTTP protocol in HTML documents. The meta tag is used in the and of the web page. The meta tag has many uses. There are two attributes of meta: name and http-equiv. The name attribute is mainly used to describe web pages, corresponding to content (web page content), so that search engine robots can find and classify them (at present, almost all search engines use online robots to automatically find meta values ​​to classify web pages). The most important of these are description (description of the site on search engines) and keywords (categorization keywords), so a meta value should be added to each page. The more commonly used ones are as follows:

name attribute

1. used to describe the generation tool (such as Microsoft FrontPage 4.0), etc. ;

 2.Indicate the keywords of your webpage to search engines;

 3. Tell search engines the main content of your site;

4. Tell search engines how your site was made Author;

5.

The attributes are described as follows:

Set to all: files will be retrieved, and links on the page can be queried;

Set to none: files will not be retrieved, and links on the page cannot be queried;

Set to index: the file will be retrieved;

Set to follow: links on the page can be queried;

Set to noindex: the file will not be retrieved , but the links on the page can be queried;

Set to nofollow: the file will not be retrieved, but the links on the page can be queried.

 http-equiv attribute

 1.

and are used to describe the text and language used to create the homepage;

Another example is ISO-8859- 1 character set, as well as BIG5, utf-8, shift-Jis, Euc, Koi8-2 and other character sets;

 2. Schedule the web page to jump to the page http://www.php.cn/ within the specified time n;

3. can be used to set the expiration time of the web page. Once it expires, it must be called again on the server. It should be noted that the GMT time format must be used;

 4. is used to set the browser to disable the cache from the local machine Retrieve the page content in Cache. Once you leave the webpage after setting, you cannot retrieve it from the Cache;

 5. cookie settings, if the web page expires, the saved cookies will be deleted. It should be noted that the GMT time format must be used;

6. Web page rating, there is a content setting in IE's internet options , which can prevent browsing some restricted websites, and the restriction level of the website is set through the meta attribute;

 7. Forcing the page to be displayed as an independent page in the current window can prevent your own web page from being called as a frame page by others;

 8. andSet special effects when entering and leaving the page , this function is the "format/webpage transition" in FrontPage, but the added page cannot be a frame page.

For more related articles about the role of meta in html, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn