关于html中的meta

meta标签的一些用法

<!--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>

猜你喜欢

转载自blog.csdn.net/qq_39576250/article/details/81535020