WML <head> 标签

WML 中的 <head> 元素与 HTML 中的 <head> 元素类似。

它标记了存储有关文档的元信息的位置。 元信息是有关文档本身的信息,而不是其内容。

如果存在,该元素必须是 <wml> 元素内的第一个元素。

属性:

<head> 元素支持以下属性:

属性描述
classclass data设置元素的类名。
idelement ID元素的唯一 ID。

示例:

以下示例显示了该元素的用法:

<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN"
"http://www.wapforum.org/DTD/wml12.dtd">

<head>
   <access domain="www.tutorialspoint.com"/>
   <meta name="keyword" content="WML"/>
</head>

<wml>

<card id="one" title="First Card">
<p>
This is the first card in the deck
</p>
</card>

<card id="two" title="Second Card">
<p>
Ths is the second card in the deck
</p>
</card>

</wml>