search
HomeWeb Front-endHTML TutorialSummary of HTML meta tag usage

meta tags are very important in HTML. In this article we will introduce a summary of the usage of HTML meta tags, hoping to help everyone.

What is mata tag

element can provide meta-information about the page, such as search engine and update frequency Degree description and keywords. 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.
meta is an auxiliary tag in the head area of ​​html language. We can see meta tags in almost all web pages, but they cannot be seen in the browser's display page. Maybe you think these codes are dispensable. In fact, the meta tag is very important and will bring practical effects to your website. For example, the website description () will be reflected in the search engine index. For example, use the meta tag to set the encoding of the website to gbk2312 or utf-8. The meta tag setting key Words

Basic Grammar

<meta  name="keywords"   content="关键字1,关键字2,关键字3....">

The function of keyword tags is to tell search engines what aspects of the content of the website are about, making it easier for search engines to define and index the website. .Keywords are separated by commas under the English input method. The length of keywords generally does not exceed 100 characters.
For example, our website is about learning web development technology, and the keyword description can be written like this :

<meta  name="keywords"   content="html教程,css教程,javascript教程">

When users search for these keywords in search engines, your website will appear in the results. However, because many cheaters (black hat SEO) in the early days used keyword stuffing to cheat, now search engines (Baidu) is no longer so sensitive to keywords.

meta tag setting description
Grammar format:

<meta  name=“discription”  content=“描述的内容”>

The description of the web page is very important, you can directly It is reflected in the search engine. For example, open the Baidu website and search for "Sina" and you will see the following page

meta tag setting character set
Grammar format:

<meta http-equiv =“content-type”  content=“text/html;    charset="编码格式”>

Common The encoding formats include Chinese encoding (gbk2312) and international encoding (UTF-8). gbk2312 is Chinese encoding. If your website content is all in Chinese, use gbk2312. UTF-8 is universal for text around international encodings (including Chinese and English). ). The main difference between them is that gbk2312 is specially built for Chinese, and one Chinese character occupies 2 characters. UTF-8 is a universal Chinese character and occupies 3 bytes. In the early days, network bandwidth resources were scarce, so using gbk2312 encoding can save bandwidth. Improve the opening speed of web pages, but now our home bandwidth is 4M or above and completely ignore the bytes saved.
Example:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >

When we browse the web, most of us have encountered garbled pages. The encoding format is to let the browser parse in the set editing format. If the encoding format is not If used correctly, garbled characters will appear. So I recommend using the universal UTF-8 encoding, so that all browsers in the world can display normally when accessing our web pages.

meta tag sets automatic refresh time
Syntax format

<meta http-equiv=“refresh”  content=“刷新间隔的时间”>

The refresh time is in seconds. For example, the forum page can only see new posts after refreshing. Pages like this that update quickly can add automatic refresh code. Make sure you can see the latest page.
Example:


XML/HTML CodeCopy content to clipboard

<meta http-equiv=“refresh”  content=“3”>

Here we demonstrate setting the time to 3 seconds, please test it yourself.

meta tag setting automatically jumps to new Page
Grammar format

<meta http-equiv=“refresh”  content=“跳转间隔的秒数;  Url="新网页地址”>

Example

<meta http-equiv=“refresh”  content=“3;  Url="http://www.adminwang.com”>

When the browser opens this page, it will automatically jump to the homepage of our website after 3 seconds.

meta tag setting disables caching
Syntax format

<meta http-equiv="cache-control"  content="no-cache" />

We know that browsers have a caching mechanism, that is, opening a web page will automatically save it locally. The purpose of this is certain When accessing again within a certain period of time, the file in the cache will be directly called to improve the access speed. However, for pages that change from time to time like forums, we do not want the browser to save the cached file. This code can be added. There is another use in program development, the program If you want to always check the effect of code modification during debugging, you can use this code to disable browser cache.
Another way to write:

<meta http-equiv="pragma" content="no-cache" >

The above is the detailed content of Summary of HTML meta tag usage. 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
The Future of HTML: Evolution and Trends in Web DesignThe Future of HTML: Evolution and Trends in Web DesignApr 17, 2025 am 12:12 AM

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

HTML vs. CSS vs. JavaScript: A Comparative OverviewHTML vs. CSS vs. JavaScript: A Comparative OverviewApr 16, 2025 am 12:04 AM

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML: Is It a Programming Language or Something Else?HTML: Is It a Programming Language or Something Else?Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML: Building the Structure of Web PagesHTML: Building the Structure of Web PagesApr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

From Text to Websites: The Power of HTMLFrom Text to Websites: The Power of HTMLApr 13, 2025 am 12:07 AM

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

Understanding HTML, CSS, and JavaScript: A Beginner's GuideUnderstanding HTML, CSS, and JavaScript: A Beginner's GuideApr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

The Role of HTML: Structuring Web ContentThe Role of HTML: Structuring Web ContentApr 11, 2025 am 12:12 AM

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.

HTML and Code: A Closer Look at the TerminologyHTML and Code: A Closer Look at the TerminologyApr 10, 2025 am 09:28 AM

HTMLisaspecifictypeofcodefocusedonstructuringwebcontent,while"code"broadlyincludeslanguageslikeJavaScriptandPythonforfunctionality.1)HTMLdefineswebpagestructureusingtags.2)"Code"encompassesawiderrangeoflanguagesforlogicandinteract

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools