这篇文章给大家分享的内容是关于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>
相关推荐:
HTML5中div标签的实例代码以上是html中meta标签的用法实例的详细内容。更多信息请关注PHP中文网其他相关文章!