head标签是html组成的一个部分,主要用于配置页面信息。
标题标签:
<title>网页标题!</title>
编码格式标签:
<!--编码配置:html5--> <meta charset="UTF-8"> <!--编码配置:html4--> <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
搜索优化标签:
<meta name="keywords" content="关键字1,关键字2,关键字3"/> <meta name="description" content="页面描述"/> <meta name="author" content="网页作者名"/>
指定跳转标签:
<!--5秒后自动跳转到指定界面--> <meta http-equiv="refresh" content="5;url=https://www.cnblogs.com/lurenjia-bky/"/>
其它:
标签:head,标签,常用,标题,HTML,跳转 From: https://www.cnblogs.com/lurenjia-bky/p/17035538.html