". 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

How to set encoding in html

青灯夜游
青灯夜游Original
2021-05-02 09:20:2614905browse

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.

How to set encoding in html

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

defines the character encoding of the document. content Defines meta-information related to the http-equiv or name attribute. http-equivcontent-typeAssociate the content attribute to the HTTP header. nameapplication-name Associate the content attribute to a name. scheme
Attributes Value Description
charset ## character_set
text
default-style
refresh
author
description
generator

keywords
format/URI HTML5 is not supported. Define the format used to translate content attribute values.
Recommended tutorial: "

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!

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