HTML5可以用在Head中的标签 [ base | link | meta | scrīpt | style | title ]
<html>
<head>
<basehref=""/>
<!--规定页面中所有链接的基准url,一般在Head下面第一个位置。-->
<metacharset="utf-8"/>
<!--charset是新增属性,它使字符集的定义更加容易-->
<metaname="revised"content="定义页面的最新版本"/>
<!--name的值允许[author|descrīption|keywords|generator|revised|others]-->
<metahttp-equiv="refresh"content="定义页面刷新时间"/>
<!--http-equiv的值允许[content-type|expires|set-cookie|refresh]-->
<!--在HTML5中,meta不再支持scheme属性-->
<scrīpttype="text/javascrīpt">document.write("HelloHTML5!")</scrīpt>
<!--如果使用"src"属性,则<scrīpt>元素必须是空的-->
<!--在HTML4中,"type"属性是必需的,但在HTML5中是可选的-->
<title>HTML5!</title>
<linkrel="stylesheet"href=""type="text/css"/>
<!--link中charset、rev、target在HTML5中不再支持-->
<!--sizes是HTML5的新增属性,规定被链接资源的尺寸。仅适用于rel="icon"。-->
<styletype="text/css">html5{color:red}</style>
</head>
相关推荐
表格的现在还是较为常用的一种标签,但不是用来布局,常见处理、显示表格式数据。在HTML网页中,要想创建表格,就需要使用表格相关的标签。<table> <tr> <td>单元格内的文字</td> ...