一、HTML其它常用标签
1.meta标签
(1)meta标签是一个特殊的HTML标签,提供有关网页的信息,如作者姓名、公司名称和联系信息等
(2)许多搜索引擎都使用meta标签
<head>
<meta name="keywords" content="开发,测试,教育,development">
</head>
(3)属性
- name属性
- http-equiv属性
(4)name属性的主要参数
Keywords(关键字)
- <meta name="keywords" content="开发,测试,教育,development">
description(网站内容描述)
- <meta name="description" content="This page is about the computer">
robots(机器人向导)
- <meta name="robots" content="none">
- 参数值:all,none,index,noindex,follow,nofollow,默认是all
author(作者)
- <meta name=&#