HTML5可以用在Head中的标签 [ base | link | meta | scrīpt | style | title ]

<html>
<head>
<base href="" />
<!-- 规定页面中所有链接的基准 url,一般在Head下面第一个位置。 -->
<meta charset="utf-8" />
<!-- charset 是新增属性,它使字符集的定义更加容易 -->
<meta name="revised" content="定义页面的最新版本" />
<!-- name的值允许 [ author | descrīption | keywords | generator | revised | others ] -->
<meta http-equiv="refresh" content="定义页面刷新时间" />
<!-- http-equiv的值允许 [ content-type | expires | set-cookie | refresh ] -->
<!-- 在 HTML 5 中,meta不再支持 scheme 属性 -->
<scrīpt type="text/javascrīpt">document.write("Hello HTML5!")</scrīpt>
<!-- 如果使用 "src" 属性,则 <scrīpt> 元素必须是空的 -->
<!-- 在 HTML 4 中,"type" 属性是必需的,但在 HTML5 中是可选的 -->
<title>HTML5!</title>
<link rel="stylesheet" href="" type="text/css" />
<!-- link 中charset、rev、target 在HTML5中不再支持 -->
<!-- sizes 是HTML5的新增属性,规定被链接资源的尺寸。仅适用于 rel="icon"。 -->
<style type="text/css">html5{color:red}</style>
</head>

你可能感兴趣的:(html5)