本文主要是介绍html5元素标签基础 head 部分,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<!doctype html><!--html5声明--><html>
<head>
<meta charset="utf-8"/> <!-- 设置当前页面支持的字符集 html5-->
<title>所有的html基本标签</title> <!-- 当前页面的标题-->
<!--已下几个meta 的属性 都是对搜索引擎进行优化(描述以及关键字)-->
<meta name="discription" content="全国最大的搜索引擎网站"/>
<meta name="Keywords" content="万云华,源辰,html5,培训,标签,"/>
<!-- meta中http-equiv的特殊属性 5秒跳转
<meta http-equiv="refresh" content="5;url=http://blackbili.nmzh.net"/>
-->
<!-- 设置当前页面字符集 html4-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<!-- 设置当前的网页在缓存中的 过期时间,设置50表示50秒后,本机缓存失效,重新获取新网页面-->
<meta http-equiv="expires" content="50"/>
<!-- 设置网页ico-->
<link rel="shortcut icon" href="./image/1.ico"/>
</head>
<body>
<p>以上是常用的 head 部分标签</p>
</body>
</html>
常用的html标签,包括字符集的声明,网站标题、关键字、icon等常用的头部标签。
这篇关于html5元素标签基础 head 部分的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!