这个header标签的作用是啥?
<head>
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="content-language" content="zh-cn" />
<meta name="robots" content="all" />
link那个是ico图标,那下个呢?
语言
<meta http-equiv="content-type" content="text/html; charset=utf-8" />定义网站采用utf-8编码。
<meta http-equiv="content-language" content="zh-cn" />定义了语言是中文简体。
<meta name="robots" content="all" />允许所有搜索引擎访问这个页面。