头标签用于设置页面的一些属性信息
格式:<head></head>
在头标签中还有一些其他的标签
<title></title>用于设置页面标题
<base/>用于设置此页面所有超链接的目录,利用href链接目录,可以是本地也可以是网络,target用于指定打开方式,如target="_blank"新页面打开
<meta />可以用于设置页面关键字例如:
<meta name="keyword" content="hello, world"/>
可以模拟http协议头,例如:
<meta http-quiv="refresh" content="3; url=http://www.baidu.com"/>功能3秒后跳到百度
可以设置页面属性
<meta http-quiv="Content-Type" content="text/html; charset=utf-8"/>
<link/>可以关联一些文件例如:
<link rel=”stylesheet” href=”1.css” media=”print/screen”>
rel指定关联文件与HTML的关系 media指定文件作用的设备,多个设备斜杠分隔,href文件链接
时间: 2024-10-10 01:10:35