". The meta tag provides metadata of the HTML document. The metadata will not be displayed on the client, but will be parsed by the browser; and the charset attribute is used to define the character encoding of the document."/> ". The meta tag provides metadata of the HTML document. The metadata will not be displayed on the client, but will be parsed by the browser; and the charset attribute is used to define the character encoding of the document.">
Home > Article > Web Front-end > How to set encoding in html
In HTML, you can use the meta tag to set the encoding, the syntax format is "e177f9703a16b1a626d2edeb2043ca1f". The meta tag provides metadata of the HTML document. The metadata will not be displayed on the client, but will be parsed by the browser; and the charset attribute is used to define the character encoding of the document.
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
In html, you can use meta tags to set encoding.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <!--所有 meta 标签显示在 head 部分...--> </body> </html>
HTML e8e496c15ba93d81f6ea4fe5f55a2244 Tag
Metadata (Metadata) is the data information of the data. The
e8e496c15ba93d81f6ea4fe5f55a2244 tag provides metadata for an HTML document. The metadata will not be displayed on the client, but will be parsed by the browser.
The META element is usually used to specify the description, keywords, last modification time of the file, author and other metadata of the web page.
Metadata can be called using browsers (how content is displayed or pages are reloaded), search engines (keywords), or other web services.
Note: The e8e496c15ba93d81f6ea4fe5f55a2244 tag is usually located within the 93f0f5c25f18dab9d176bd4f6de5d30e area.
Example
Example 1 - Define document keywords for search engines:
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
Example 2 - Define web page description:
<meta name="description" content="Free Web tutorials on HTML and CSS">
Example 3 - Define page author:
<meta name="author" content="Hege Refsnes">
Example 4 - Refresh page every 30 seconds:
<meta http-equiv="refresh" content="30">
Attribute value
Attributes | Value | Description |
---|---|---|
charset |
## character_set | defines the character encoding of the document.|
text | Defines meta-information related to the http-equiv or name attribute.||
content-type | default-style refresh | Associate the content attribute to the HTTP header. |
application-name | author description generator keywords | Associate the content attribute to a name. |
format/URI | HTML5 is not supported. Define the format used to translate content attribute values. |
html video tutorial"
The above is the detailed content of How to set encoding in html. For more information, please follow other related articles on the PHP Chinese website!