Home  >  Article  >  Web Front-end  >  Usage examples of meta tags in html

Usage examples of meta tags in html

不言
不言Original
2018-08-09 15:20:221773browse

The content shared with you in this article is about the usage examples of meta tags in HTML. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Some usages of meta tags

<!--meta模板 -->
<!DOCTYPE html>
<html>
    <head> 
    <meta name="keywords" content="内容"/>
    <meta name="description" content="描述" />
    <meta name="generator" content="编辑器" />
    <meta name="author" content="名字" />
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <!--
    自动刷新
    <meta http-equiv="refresh" content="3;url=">
-->
<title></title>     
    </head>
    <body>
        正文    
     </body>
</html>

Related recommendations:

HTML objects: Introduction to some html object attributes

Example code of div tag in HTML5

The above is the detailed content of Usage examples of meta tags 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