Detailed explanation of the use of tags in HTML

不言
Release: 2018-06-05 10:44:04
Original
1811 people have browsed it

This article mainly introduces the use of tags in HTML. It is very good and has certain reference value. Friends who need it can refer to it

In the web pages we create, if If you want it to be accessible to more people, the best way is to find your URL through a search engine, so your web page needs to have keywords that the search engine can identify, so the in HTML Tags are this function. They write the key information of this page so that search engines can identify it. Then let’s talk about how to use :

<head>
<title>mate</title>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
<meta name="author" content="Erwin Aligam - styleshout.com" />
<meta name="description" content="Site Description Here" />
<meta name="keywords" content="keywords, here" />
<meta name="robots" content="index, follow, noarchive" />
<meta name="googlebot" content="noarchive" />
</head>
Copy after login

 1. Use of attributes

This is a simple example. This tag is written in and will not be seen by the user. This is more Depend on your own needs to see whether you want these functions. The attributes of the tag mainly include http-equiv and name.

http-equiv is like the header file of http. It can send some useful information to the browser to help better display the content you want. The value of the http-equiv attribute can include content-type and expires. , refresh and so on.

The name attribute is mainly used to describe web pages. The value of the name attribute can be: author, description, keywords, generator, etc.

  2. Application of the name attribute

The use of name can be seen in the examples above, such as keywords and description. Working principle, the search engine will first exclude the keywords and description in the robot's automatic retrieval page, and add them to its own database, and then sort the website according to the density of the keywords, so these two attributes are very important

 Note : The content content of keywords should be limited to 36 characters.

The content of description should be limited to 76 characters.

These two need to be used together

#

The above is the detailed content of Detailed explanation of the use of tags in HTML. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!